我需要以编程方式收集Maven项目中的一些路径,特别是要引用项目工件。 使用
URL MyClass.class.getClassLoader().getResource(String name)
适用于相对于项目的 target / classes 文件夹的路径,但由于工件位于目标文件夹中,因此无法引用它。像
这样的路径System.getProperty("user.dir") + "/target"
根本不能说服我,至少因为目标文件夹名称(标准版)不能安全移植。
是否有利用相对路径的Maven感知库解决方案?
答案 0 :(得分:1)
maven archiver写入清单文件。
如果您有一个Web应用程序,那么您也可以将一些信息传递给web.xml文件。
这是我的一个项目的例子:
from pom.xml:
------------------------------------------------
<properties>
<maven.build.timestamp.format>dd.MM.yyyy' 'HH:mm:ss</maven.build.timestamp.format>
<build-version>${env.SVN_REVISION}</build-version>
<build-date>${maven.build.timestamp}</build-date>
</properties>
.
.
.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<webResources>
<webResource>
<directory>${basedir}/src/main/webapp/WEB-INF</directory>
<includes>
<include>web.xml</include>
</includes>
<targetPath>WEB-INF</targetPath>
<filtering>true</filtering>
</webResource>
</webResources>
from web.xml:
------------------------------------------------
<context-param>
<param-name>BUILD_VERSION</param-name>
<param-value>${build-version}</param-value>
</context-param>
<context-param>
<param-name>BUILD_DATE</param-name>
<param-value>${build-date}</param-value>
</context-param>