app/代码/workspace_robo4/robocode.installer/pom.xml

28 lines
842 B
XML
Raw Normal View History

2016-08-19 10:54:22 +08:00
<?xml version="1.0" encoding="utf-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>robocode.installer</artifactId>
<name>Robocode Installer</name>
<parent>
<groupId>net.sf.robocode</groupId>
<artifactId>robocode</artifactId>
<version>${robocode.version}</version>
</parent>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>net.sf.robocode.installer.AutoExtract</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>