我正在嘗試使用deploy.wsdd和maven axis工具插件部署一個axis 1.4服務, 我已經配置了pom.xml,但出現錯誤需要inputFiles
。 請參考下面Axis 1.4 Axis:管理工具嘗試使用maven部署服務時出錯
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>axistools-maven-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>deploy-service</id>
<goals>
<goal>admin</goal>
</goals>
<configuration>
<inputFiles>
<inputFile>/src/main/resources/config/axis/deploy.wsdd</inputFile>
<inputFile>/src/main/resources/configaxis/undeploy.wsdd</inputFile>
</inputFiles>
<isServerConfig>true</isServerConfig>
<configOutputDirectory>/src/main/webapp/WEB-INF</configOutputDirectory>
</configuration>
</execution>
</executions>
</plugin>
我得到錯誤的位置我設置(這是根據文檔的ArrayList型)inputFiles我的POM。請讓我知道什麼是與此設置問題,並在下面找到
命令的錯誤:
mvn clean axistools:admin
錯誤:
[INFO] One or more required plugin parameters are invalid/missing for 'axistools:admin'
[0] Inside the definition for plugin 'axistools-maven-plugin' specify the following:
<configuration>
...
<inputFiles>VALUE</inputFiles>
</configuration>
-OR-
on the command line, specify: '-DinputFile=VALUE'
請讓我知道是什麼我需要設置的價值?
嘿,我有同樣的錯誤知道...你有沒有找到解決方案? – boskop
我在Maven中使用了ANT腳本...我無法解決它...如果您可以找到解決方案,請告訴我...我也可以通過ANT向您提供解決方案 – tamilnad
查看此問題(仍未解決): _axistools:admin不包括classpath_中的目標/類[http://jira.codehaus.org/browse/MAXISTOOLS-3](http://jira.codehaus.org/browse/MAXISTOOLS-3) –