Maven pom.xml - 构建模块+自构建

时间:2011-09-22 10:24:17

标签: java maven jasper-reports build-process

我有下一个项目结构:

app
module1
module2
...
moduleN
parent-pom

项目app仅包含属性文件和 JasperReports 的报告模板。 app的Pom.xml:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

<parent>
    <groupId>my-group</groupId>
    <artifactId>parent-pom</artifactId>
    <version>1.0.0</version>
    <relativePath>../parent-pom</relativePath>
</parent>

<artifactId>app</artifactId>
<version>${app-version}</version>
<packaging>pom</packaging>
<modules>
    <module>../module1</module>
    <module>../module2</module>
    ...
    <module>../moduleN</module>
</modules>

我想为项目应用添加 jasperreports-maven-plugin 。我已经尝试了下一个代码(在<modules>部分之前),但是它不起作用(没有调用自构建):

<build>
    <plugins>
        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>jasperreports-maven-plugin</artifactId>
            <configuration>
                <sourceDirectory>${basedir}/config/templates</sourceDirectory>
                <outputDirectory>${basedir}/config/templates</outputDirectory>
            </configuration>
            <executions>
                <execution>
                    <goals>
                        <goal>compile-reports</goal>
                    </goals>
                </execution>
            </executions>
            <dependencies>
                <dependency>
                    <groupId>net.sf.jasperreports</groupId>
                    <artifactId>jasperreports</artifactId>
                    <version>${jasperreports.version}</version>
                </dependency>
            </dependencies>
        </plugin>
    </plugins>
</build>

是否可以使用模块将自构建添加到pom?

1 个答案:

答案 0 :(得分:0)

应用程序项目打包设置为pom - 因此它不能包含任何其他工件。您需要将jasper报告移动到其他模块之一或单独的模块。