在 Maven 中使用 Jasper Reports(使用 jasperreports-maven-plugin)编译我的 .jrxml 文件时,有什么方法可以指定使用哪个版本的 Java?我看到这篇博客文章声称 Jasper 使用“您计算机中设置的默认虚拟机”而不是“相同版本的 maven-compiler-plugin”。如果我无法更改或保证 JAVA_HOME 环境变量,如何让 Jasper 使用 Java6 进行编译?
这是我的 pom.xml 中的一个片段:
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jasperreports-maven-plugin</artifactId>
<version>1.0-beta-2</version>
<configuration>
<outputDirectory>${project.build.directory}/classes</outputDirectory>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>compile-reports</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>net.sf.jasperreports</groupId>
<artifactId>jasperreports</artifactId>
<version>5.0.1</version>
</dependency>
</dependencies>
</plugin>
<plugin>
</plugins>
查看Codehaus 文档,您可以使用一个参数,但没有说明如何指定哪个 Java 版本。
谢谢!