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>group7</artifactId>
|
---|
7 | <version>0.0.1-SNAPSHOT</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.9.10</jackson-2-version>
|
---|
15 | <geniusweb.version>1.5.9</geniusweb.version>
|
---|
16 | </properties>
|
---|
17 |
|
---|
18 | <distributionManagement>
|
---|
19 | <repository>
|
---|
20 | <id>artifactory.ewi.tudelft.nl</id>
|
---|
21 | <url>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
|
---|
22 | </repository>
|
---|
23 | </distributionManagement>
|
---|
24 |
|
---|
25 | <dependencies>
|
---|
26 | <dependency>
|
---|
27 | <groupId>geniusweb</groupId>
|
---|
28 | <artifactId>party</artifactId>
|
---|
29 | <version>${geniusweb.version}</version>
|
---|
30 | </dependency>
|
---|
31 | <dependency>
|
---|
32 | <groupId>geniusweb</groupId>
|
---|
33 | <artifactId>profileconnection</artifactId>
|
---|
34 | <version>1.6.0</version> <!-- must equal ${geniusweb.version} -->
|
---|
35 | </dependency>
|
---|
36 | </dependencies>
|
---|
37 |
|
---|
38 | <build>
|
---|
39 | <plugins>
|
---|
40 | <plugin>
|
---|
41 | <groupId>org.apache.maven.plugins</groupId>
|
---|
42 | <artifactId>maven-compiler-plugin</artifactId>
|
---|
43 | <version>3.8.0</version>
|
---|
44 | <configuration>
|
---|
45 | <source>1.8</source>
|
---|
46 | <target>1.8</target>
|
---|
47 | </configuration>
|
---|
48 | </plugin>
|
---|
49 |
|
---|
50 | <plugin>
|
---|
51 | <groupId>org.apache.maven.plugins</groupId>
|
---|
52 | <artifactId>maven-jar-plugin</artifactId>
|
---|
53 | <version>3.2.0</version>
|
---|
54 | <configuration>
|
---|
55 | <archive>
|
---|
56 | <manifest>
|
---|
57 | <mainClass>geniusweb.exampleparties.nataliaparty.Group7_Main</mainClass>
|
---|
58 | </manifest>
|
---|
59 | </archive>
|
---|
60 | </configuration>
|
---|
61 | </plugin>
|
---|
62 |
|
---|
63 |
|
---|
64 | <plugin>
|
---|
65 | <groupId>org.apache.maven.plugins</groupId>
|
---|
66 | <artifactId>maven-assembly-plugin</artifactId>
|
---|
67 | <version>2.4.1</version>
|
---|
68 | <configuration>
|
---|
69 | <!-- get all project dependencies -->
|
---|
70 | <descriptorRefs>
|
---|
71 | <descriptorRef>jar-with-dependencies</descriptorRef>
|
---|
72 | </descriptorRefs>
|
---|
73 | <archive>
|
---|
74 | <manifest>
|
---|
75 | <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
---|
76 | <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
|
---|
77 | <mainClass>geniusweb.exampleparties.nataliaparty.Group7_Main</mainClass>
|
---|
78 | </manifest>
|
---|
79 | </archive>
|
---|
80 | </configuration>
|
---|
81 | <executions>
|
---|
82 | <execution>
|
---|
83 | <id>make-assembly</id>
|
---|
84 | <!-- bind to the packaging phase -->
|
---|
85 | <phase>package</phase>
|
---|
86 | <goals>
|
---|
87 | <goal>single</goal>
|
---|
88 | </goals>
|
---|
89 | </execution>
|
---|
90 | </executions>
|
---|
91 | </plugin>
|
---|
92 |
|
---|
93 | </plugins>
|
---|
94 | </build>
|
---|
95 | </project> |
---|