使用 Apache Maven
在 JasperReports 的 -插件 由亚历克斯 Nederlof 是放弃了一个很好的替代 org.codehaus.mojo:JasperReports 的 - Maven 的插件插件。
添加插件是一个典型的简单过程:
<build>
<plugins>
<plugin>
<groupId>com.alexnederlof</groupId>
<artifactId>jasperreports-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<phase>process-sources</phase>
<goals>
<goal>jasper</goal>
</goals>
</execution>
</executions>
<configuration>
<sourceDirectory>src/main/resources/jrxml</sourceDirectory>
<outputDirectory>${project.build.directory}/jasper</outputDirectory>
</configuration>
</plugin>
</plugins>
</build>
使用 Maven 编译的命令 :
mvn jasperreports:jasper
碧玉文件将被创建 $ {project.build.directory} /碧玉文件夹(例如,在 /目标/碧玉 )