pom.xml 3.22 KB
Newer Older
1
2
3
4
5
6
7
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">
	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	</properties>
	<modelVersion>4.0.0</modelVersion>
	<groupId>maki</groupId>
	<artifactId>simonstrator-api</artifactId>
Björn Richerzhagen's avatar
Björn Richerzhagen committed
9
	<version>3.1-SNAPSHOT</version>
10
11
12
13
14
	<name>Simonstrator-API</name>

	<distributionManagement>
		<repository>
			<id>kom-deploy</id>
15
			<url>scp://dev.kom.e-technik.tu-darmstadt.de/mvn</url>
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
		</repository>
	</distributionManagement>

	<build>
		<sourceDirectory>src</sourceDirectory>
		<resources>
			<resource>
				<directory>src</directory>
				<excludes>
					<exclude>**/*.java</exclude>
				</excludes>
			</resource>
		</resources>
		<plugins>
			<plugin>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>3.1</version>
				<configuration>
					<source>1.8</source>
					<target>1.8</target>
				</configuration>
			</plugin>
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
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-source-plugin</artifactId>
				<version>2.0.4</version>
				<executions>
					<execution>
						<id>attach-sources</id>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<version>2.10.3</version>
				<executions>
					<execution>
						<id>attach-javadocs</id>
						<goals>
							<goal>jar</goal>
						</goals>
						<configuration>
			                <additionalparam>-Xdoclint:none</additionalparam>
			            </configuration>
					</execution>
				</executions>
			</plugin>
67
68
69
70
71
72
73
74
75
76
77
78
		</plugins>
		<extensions>
			<!-- Enabling the use of SSH -->
			<extension>
				<groupId>org.apache.maven.wagon</groupId>
				<artifactId>wagon-ssh</artifactId>
				<version>2.10</version>
			</extension>
		</extensions>
	</build>

	<repositories>
Julian Zobel's avatar
Julian Zobel committed
79
80
81
82
83
84
85
86
87
88
89
		<repository>
			<id>Google Maven Central</id>
			<url>https://maven-central.storage.googleapis.com/repos/central/data/</url>
			<snapshots>
	            <updatePolicy>always</updatePolicy>
	        </snapshots>
	        <releases>
	            <updatePolicy>always</updatePolicy>
	        </releases>
		</repository>
	
90
91
92
93
94
95
96
97
98
99
100
101
		<!-- uk maven central, since the local central server is slow as hell -->
		<repository>
			<id>uk.maven.org</id>
			<url>http://uk.maven.org/maven2</url>
		</repository>

		<!-- simonstrator-repository -->
		<repository>
			<id>simonstrator</id>
			<url>https://dev.kom.e-technik.tu-darmstadt.de/mvn/</url>
		</repository>
	</repositories>
102
	
Julian Zobel's avatar
Julian Zobel committed
103
	<dependencies> 
104
105
106
107
108
		<dependency>
			<groupId>com.google.guava</groupId>
			<artifactId>guava</artifactId>
			<version>18.0</version>
		</dependency>
Julian Zobel's avatar
Julian Zobel committed
109
110
111
112
113
		<dependency>
		    <groupId>javax.xml.bind</groupId>
		    <artifactId>jaxb-api</artifactId>
		    <version>2.3.1</version>
		</dependency>
114
115
116
117
118
		<dependency>
			<groupId>gov.nist.math</groupId>
			<artifactId>jama</artifactId>
			<version>1.0.3</version>
		</dependency>
Tobias Meuser's avatar
Tobias Meuser committed
119
120
121
122
123
	  	<dependency>
	  		<groupId>org.apache.commons</groupId>
	  		<artifactId>commons-math3</artifactId>
	  		<version>3.0</version>
	  	</dependency>
124
125
  	</dependencies>
</project>