1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
<?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.dotnet.robotscs</artifactId>
<packaging>dotnet:library</packaging>
<name>Robocode .NET Test Robots</name>
<description>.NET test robots for Robocode</description>
<parent>
<artifactId>robocode.dotnet</artifactId>
<groupId>net.sf.robocode</groupId>
<version>1.9.3.9</version>
</parent>
<dependencies>
<dependency>
<groupId>net.sf.robocode</groupId>
<artifactId>robocode.dotnet.api</artifactId>
<version>${project.version}</version>
<type>dotnet:library</type>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<groupId>org.sonatype.nmaven.plugins</groupId>
<artifactId>maven-dotnet-compiler-plugin</artifactId>
<configuration>
<aditionalOptions>/warn:0</aditionalOptions>
</configuration>
</plugin>
<plugin>
<groupId>org.jvnet.maven-antrun-extended-plugin</groupId>
<artifactId>maven-antrun-extended-plugin</artifactId>
<executions>
<execution>
<phase>process-classes</phase>
<configuration>
<tasks>
<copy file="src/tested/robotscs/TestTeam.team" todir="target/tested/robotscs" />
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
|