File: pom.xml

package info (click to toggle)
robocode 1.9.3.9-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,648 kB
  • sloc: java: 53,012; cs: 25,275; xml: 2,337; sh: 272; makefile: 15
file content (70 lines) | stat: -rw-r--r-- 2,239 bytes parent folder | download | duplicates (3)
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
63
64
65
66
67
68
69
70
<?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.ntests</artifactId>
	<packaging>dotnet:library</packaging>
	<name>Robocode .NET nTests</name>
	<description>.NET ntests 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>
		<dependency>
			<groupId>net.sf.robocode</groupId>
			<artifactId>robocode.dotnet.control.api</artifactId>
			<version>${project.version}</version>
			<type>dotnet:library</type>
		</dependency>
		<dependency>
			<groupId>net.sf.robocode</groupId>
			<artifactId>robocode.dotnet.nhost</artifactId>
			<version>${project.version}</version>
			<type>dotnet:library</type>
		</dependency>
		<dependency>
			<groupId>net.sf.robocode</groupId>
			<artifactId>robocode.dotnet.robotscs</artifactId>
			<version>${project.version}</version>
			<type>dotnet:library</type>
		</dependency>
		<dependency>
			<groupId>net.sf.robocode</groupId>
			<artifactId>robocode.dotnet.samples</artifactId>
			<version>${project.version}</version>
			<type>dotnet:library</type>
		</dependency>
		<dependency>
			<groupId>org.nunit</groupId>
			<artifactId>nunit.framework</artifactId>
			<version>2.4.3.0</version>
			<type>dotnet:library</type>
		</dependency>
		<dependency>
			<groupId>net.sf.jni4net</groupId>
			<artifactId>jni4net.n</artifactId>
			<version>0.8.7.0</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>
		</plugins>
	</build>
</project>