您好我尝试使用lwjgl库,并在我的项目pom.xml中使用配置来复制依赖项。在eclipse中,Indigo和更老的maven插件都可以正常工作。芽现在使用eclipse luna和新的maven插件我必须为该插件编写生命周期映射。但我不能这样做。你可以打扰我,怎么写这个。
的pom.xml
<plugin>
<groupId>com.googlecode.mavennatives</groupId>
<artifactId>maven-nativedependencies-plugin</artifactId>
<version>0.0.6</version>
<executions>
<execution>
<id>unpacknatives</id>
<phase>generate-resources</phase>
<goals>
<!--suppress MavenModelInspection (this line is for IDEA)-->
<goal>copy</goal>
</goals>
</execution>
</executions>
</plugin>
eclipse说错误
Plugin execution not covered by lifecycle configuration: com.googlecode.mavennatives:maven-nativedependencies-plugin:0.0.6:copy (execution: unpacknatives, phase: generate-resources)
使用我的生命周期映射xml im traing类似的东西
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>com.googlecode.mavennatives</groupId>
<artifactId>maven-nativedependencies-plugin</artifactId>
<goals>
<goal>unpacknatives</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
但如果我托盘什么都不会发生。当然我重新加载我的映射。请帮我解决一下这个。谢谢帕维尔
我希望能为多个程序员工作的答案能够做到最少工作,而不是将库设置为项目,而不是将debendencies复制到某个目录...... Maven应该使用我的nexus repo来处理它。