gpt4 book ai didi

maven - 获取子模块内的父 POM 中定义的属性 [多模块项目]

转载 作者:行者123 更新时间:2023-12-03 11:28:40 25 4
gpt4 key购买 nike

我在将属性从 [多模块项目] 的 super pom 传递到子 pom 时遇到问题。

目前我有以下文件:
superpom

<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>...</groupId>
<artifactId>meta-all</artifactId>
<version>1.0</version>
<packaging>pom</packaging>
<properties>
<databasedriver>net.sourceforge.jtds.jdbc.Driver</databasedriver>
</properties>
<modules>
<module>child1</module>
</modules>
</project>

child pom
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>...</groupId>
<artifactId>child1</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>sql-maven-plugin</artifactId>
<version>1.5</version>
<!-- JDBC Driver -->
<dependencies>
<dependency>
<groupId>net.sourceforge.jtds</groupId>
<artifactId>jtds</artifactId>
<version>1.3.1</version>
</dependency>
</dependencies>
<configuration>
<driver>${project.parent.databasedriver}</driver>
...
<autocommit>true</autocommit>
<delimiter>GO</delimiter>
<delimiterType>row</delimiterType>
</configuration>
<executions>

但是,我不确定为什么我无法获取插件配置来检索 super pom 的属性。

最佳答案

您应该尝试使用 ${databasedriver}直接在你的 child pom.

关于maven - 获取子模块内的父 POM 中定义的属性 [多模块项目],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19282486/

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