我编译了一些类文件和一个jar文件。现在我想在jar文件中包含一些wsdl。
请告诉我如何修改maven中的pom.xml以实现相同目的。
此致 Gnash - 85
答案 0 :(得分:10)
这些WSDL文件来自哪里? 它们是你的来源吗?
假设你有
project
+ src
+ main
+ java
+ wsdl
+ resources
请加入POM,
<project>
...
<build>
<resources>
...
<resource>
<directory>${basedir}/src/main/wsdl</directory>
<resource>
</resources>
</build>
</project>
然后它应该添加你的wsdl作为额外资源
编辑:
我们不需要更新project.build.resources来包含所有资源目录。
<project>
...
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<id>add-wsdl-resource</id>
<phase>generate-resources</phase>
<goals>
<goal>add-resource</goal>
</goals>
<configuration>
<resources>
<resource>
<directory>${basedir}/src/main/wsdl</directory>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>