在我的项目中,我使用 Maven 3.0.4 并使用 JasperReports 5.1.0 。要使用 jasperreports-maven-plugins 编译 JRXML 文件。我有版本1.0-beta-2的 jasperreports-maven-plugin 。由于它是测试版(1.0-beta-2)我可以知道,什么是 jasperreports-maven-plugin 的稳定版本可供使用?
在我的pom.xml文件中使用的插件下面
<properties>
<jasperreports.version>5.1.0</jasperreports.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jasperreports-maven-plugin</artifactId>
<version>1.0-beta-2</version>
<configuration>
<sourceDirectory>src/main/resources/reports</sourceDirectory>
<outputDirectory>${project.build.directory}/classes/reports</outputDirectory>
</configuration>
<executions>
<execution>
<!-- Need to bind to the compile phase cuz the reports uses classes under target/classes. The default is the generate-resources phase. -->
<phase>compile</phase>
<goals>
<goal>compile-reports</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>net.sf.jasperreports</groupId>
<artifactId>jasperreports</artifactId>
<version>${jasperreports.version}</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>2.0.1</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
答案 0 :(得分:18)
忘记官方maven插件。我已经使用alexnederlof's Jasper report maven plugin很长一段时间了,就像魅力一样。
您可以在github上找到更多信息:
来自org.codehaus.mojo的原始jasperreports-maven-plugin是一个 有点慢。这个插件快了10倍。我用52个报告测试了它 用原始插件花了48秒,用了4.7秒 这个插件。
并在他的blog:
原始插件是在Java 4中创建的,可以使用单线程和 任何承诺回购的最后一次是(在撰写本文时)第31次 2009年8月。似乎不是一个积极的项目。