1 | <project xmlns="http://maven.apache.org/POM/4.0.0"
|
---|
2 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
---|
3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
---|
4 | <modelVersion>4.0.0</modelVersion>
|
---|
5 | <groupId>ai2020</groupId>
|
---|
6 | <artifactId>group24</artifactId>
|
---|
7 | <version>2.0.4</version>
|
---|
8 |
|
---|
9 | <properties>
|
---|
10 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
---|
11 | <maven.compiler.target>1.8</maven.compiler.target>
|
---|
12 | <maven.compiler.source>1.8</maven.compiler.source>
|
---|
13 | <basedir>.</basedir>
|
---|
14 | <jackson-2-version>2.12.3</jackson-2-version>
|
---|
15 | <geniusweb.version>${project.version}</geniusweb.version>
|
---|
16 | </properties>
|
---|
17 |
|
---|
18 |
|
---|
19 | <repositories>
|
---|
20 | <repository>
|
---|
21 | <id>artifactory.ewi.tudelft.nl</id>
|
---|
22 | <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
|
---|
23 | <snapshots>
|
---|
24 | <enabled>false</enabled>
|
---|
25 | </snapshots>
|
---|
26 | </repository>
|
---|
27 | </repositories>
|
---|
28 |
|
---|
29 | <dependencies>
|
---|
30 | <dependency>
|
---|
31 | <groupId>geniusweb</groupId>
|
---|
32 | <artifactId>party</artifactId>
|
---|
33 | <version>${geniusweb.version}</version>
|
---|
34 | </dependency>
|
---|
35 | <dependency>
|
---|
36 | <groupId>geniusweb</groupId>
|
---|
37 | <artifactId>profileconnection</artifactId>
|
---|
38 | <version>${geniusweb.version}</version>
|
---|
39 | </dependency>
|
---|
40 | </dependencies>
|
---|
41 |
|
---|
42 | <build>
|
---|
43 | <plugins>
|
---|
44 | <plugin>
|
---|
45 | <groupId>org.apache.maven.plugins</groupId>
|
---|
46 | <artifactId>maven-compiler-plugin</artifactId>
|
---|
47 | <version>3.8.0</version>
|
---|
48 | <configuration>
|
---|
49 | <source>1.8</source>
|
---|
50 | <target>1.8</target>
|
---|
51 | </configuration>
|
---|
52 | </plugin>
|
---|
53 |
|
---|
54 | <plugin>
|
---|
55 | <groupId>org.apache.maven.plugins</groupId>
|
---|
56 | <artifactId>maven-jar-plugin</artifactId>
|
---|
57 | <version>3.2.0</version>
|
---|
58 | <configuration>
|
---|
59 | <archive>
|
---|
60 | <manifest>
|
---|
61 | <mainClass>ai2020.group24.Group24_Main</mainClass>
|
---|
62 | </manifest>
|
---|
63 | </archive>
|
---|
64 | </configuration>
|
---|
65 | </plugin>
|
---|
66 |
|
---|
67 |
|
---|
68 | <plugin>
|
---|
69 | <groupId>org.apache.maven.plugins</groupId>
|
---|
70 | <artifactId>maven-assembly-plugin</artifactId>
|
---|
71 | <version>2.4.1</version>
|
---|
72 | <configuration>
|
---|
73 | <!-- get all project dependencies -->
|
---|
74 | <descriptorRefs>
|
---|
75 | <descriptorRef>jar-with-dependencies</descriptorRef>
|
---|
76 | </descriptorRefs>
|
---|
77 | <archive>
|
---|
78 | <manifest>
|
---|
79 | <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
---|
80 | <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
|
---|
81 | <mainClass>ai2020.group24.Group24_Main</mainClass>
|
---|
82 | </manifest>
|
---|
83 | </archive>
|
---|
84 | </configuration>
|
---|
85 | <executions>
|
---|
86 | <execution>
|
---|
87 | <id>make-assembly</id>
|
---|
88 | <!-- bind to the packaging phase -->
|
---|
89 | <phase>package</phase>
|
---|
90 | <goals>
|
---|
91 | <goal>single</goal>
|
---|
92 | </goals>
|
---|
93 | </execution>
|
---|
94 | </executions>
|
---|
95 | </plugin>
|
---|
96 |
|
---|
97 |
|
---|
98 | </plugins>
|
---|
99 | </build>
|
---|
100 | </project> |
---|