This repository has been archived by the owner on Feb 18, 2021. It is now read-only.
forked from Techcable/SrgLib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
50 lines (47 loc) · 1.53 KB
/
pom.xml
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
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>eu.mikroskeem.orion</groupId>
<artifactId>srglib</artifactId>
<version>0.1.2</version>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.checkerframework</groupId>
<artifactId>checker-qual</artifactId>
<version>2.6.0</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>techcable-repo</id>
<url>https://repo.techcable.net/content/repositories/releases/</url>
</repository>
<snapshotRepository>
<id>techcable-repo</id>
<url>https://repo.techcable.net/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
</project>