gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-01 05:39:34 24 4
gpt4 key购买 nike

我有下一个项目结构:

app
module1
module2
...
moduleN
parent-pom

项目app仅包含属性文件和 JasperReports 的报告模板。应用程序的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中?

最佳答案

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

关于java - Maven pom.xml - 构建模块+自构建,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7513268/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com