This repository has been archived by the owner on Aug 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
76 lines (76 loc) · 2.21 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<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>
<groupId>de.uni-stuttgart.informatik.fius</groupId>
<artifactId>JVK-2018</artifactId>
<version>0.1.0</version>
<name>Java Vorkurs 2018</name>
<description>Der Java Code des Java Vorkurses 2018 von FIUS</description>
<url>https://github.com/FIUS/JVK-2018</url>
<properties>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<icge.version>0.8.0</icge.version>
</properties>
<repositories>
<repository>
<id>c-hack-internal</id>
<name>C-Hack Repositroy</name>
<url>https://maven.c-hack.de/repository/internal/</url>
</repository>
<repository>
<id>c-hack-snapshot</id>
<name>C-Hack Repositroy Snapshot</name>
<url>https://maven.c-hack.de/repository/snapshot/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>de.uni-stuttgart.informatik.fius</groupId>
<artifactId>ICGE</artifactId>
<version>${icge.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>de.unistuttgart.informatik.fius.jvk2018.Main</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<configuration>
<downloadSources>true</downloadSources>
<downloadJavadocs>true</downloadJavadocs>
</configuration>
</plugin>
</plugins>
</build>
</project>