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 52 53 54 55 56 57 58 59 60 61 62
|
<?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</artifactId>
<name>.NET Robocode</name>
<version>1.9.3.9</version>
<packaging>pom</packaging>
<parent>
<groupId>net.sf.robocode</groupId>
<artifactId>robocode</artifactId>
<version>1.9.3.9</version>
<relativePath>../..</relativePath>
</parent>
<repositories>
<repository>
<id>jni4net.repo</id>
<name>jni4net Repository</name>
<url>https://github.com/jni4net/jni4net.github.io/tree/master/mvnrepo</url>
</repository>
<repository>
<id>aduna.repo</id>
<name>Aduna Repository</name>
<url>https://repository.aduna-software.org/maven2/</url>
</repository>
</repositories>
<modules>
<module>robocode.dotnet.api</module>
<module>robocode.dotnet.control.api</module>
<module>robocode.dotnet.content</module>
<module>robocode.dotnet.distribution</module>
<module>robocode.dotnet.host</module>
<module>robocode.dotnet.nhost</module>
<module>robocode.dotnet.ntests</module>
<module>robocode.dotnet.robotscs</module>
<module>robocode.dotnet.installer</module>
<module>robocode.dotnet.samples</module>
<module>robocode.dotnet.tests</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.sonatype.nmaven.plugins</groupId>
<artifactId>maven-dotnet-compiler-plugin</artifactId>
<extensions>true</extensions>
<version>0.17robocode</version>
</plugin>
<plugin>
<groupId>org.sonatype.nmaven.plugins</groupId>
<artifactId>maven-dotnet-test-plugin</artifactId>
<version>0.17robocode</version>
</plugin>
<plugin>
<groupId>org.jvnet.maven-antrun-extended-plugin</groupId>
<artifactId>maven-antrun-extended-plugin</artifactId>
<version>1.43</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
|