如果我有artifactId,groupId以及如何配置pom.xml的版本,那么maven将从nexus存储库下载test.war文件。 我认为这应该发生在
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
.....
</plugin>
在执行块中。 我已经试过了,但没有运气:
<execution>
<phase>package</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<artifactId>mytest</artifactId>
<groupId>com.mytest</groupId>
<version>${version}</version>
<type>war</type>
<destFileName>mytest-${version}.war</destFileName>
</artifactItem>
</artifactItems>
<outputDirectory>${project.build.directory}</outputDirectory>
</configuration>
</execution>
答案 0 :(得分:1)
您确定drv->eapol_tx_sock = socket(PF_PACKET, SOCK_DGRAM, 0);
是否适合您?如果您需要当前项目的版本,则可能应该使用${version}
并可能设置<version>${project.version}</version>
来为您处理。