10

在 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 版本。

谢谢!

4

2 回答 2

9

根据这个问题,以下参数可以帮助您:

<configuration>
  ...
  <maven.compiler.source>1.6</maven.compiler.source>
  <maven.compiler.target>1.6</maven.compiler.target>
  <compiler>net.sf.jasperreports.engine.design.JRJdtCompiler</compiler>
  ...
</configuration>

但是,1.0-beta-2 没有这些属性,因此需要更高版本。您可以使用此处的快照插件版本,也可以自己从源代码构建插件。据我所知,trunk 中的插件代码支持这些参数。

于 2013-10-26T07:26:33.800 回答
1

我不得不做一些额外的配置:

  • 将 eclipse:jdtcore 设置为 jasperresports 中的排除项;
<dependency>
    <groupId>net.sf.jasperreports</groupId>
    <artifactId>jasperreports</artifactId>
    <version>5.6.0</version>
    <exclusions>
        <exclusion>
        <groupId>eclipse</groupId>
        <artifactId>jdtcore</artifactId>
    </exclusion>
    </exclusions>
</dependency>
  • 设置org.eclipse.jdt.core.compiler:ecj为插件依赖;

jasperreports-maven-插件:

            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>jasperreports-maven-plugin</artifactId>
                <version>1.0-beta-4-OPENNMS-20160912-1</version>
                <configuration>
                    <outputDirectory>src/main/webapp/WEB-INF/reports</outputDirectory>
                    <maven.compiler.source>${compileSource}</maven.compiler.source>
                    <maven.compiler.target>${compileSource}</maven.compiler.target>
                    <compiler>net.sf.jasperreports.engine.design.JRJdtCompiler</compiler>
                </configuration>
                <executions>
                    <execution>
                        <phase>process-classes</phase>
                        <goals>
                            <goal>compile-reports</goal>
                        </goals>
                    </execution>
                </executions>
                <dependencies>
                    <dependency>
                        <groupId>org.eclipse.jdt.core.compiler</groupId>
                        <artifactId>ecj</artifactId>
                        <version>4.4.1</version>
                    </dependency>
                    <dependency>
                        <groupId>net.sf.jasperreports</groupId>
                        <artifactId>jasperreports</artifactId>
                        <version>5.6.0</version>
                    </dependency>
                    <dependency>
                        <groupId>net.sf.barcode4j</groupId>
                        <artifactId>barcode4j</artifactId>
                        <version>2.0</version>
                    </dependency>
                </dependencies>

注意:插件的依赖顺序与jasperreports-maven-plugin我相关(不要问我为什么)。

于 2019-09-24T18:23:52.927 回答