[7] | 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 |
|
---|
[12] | 18 |
|
---|
| 19 | <repositories>
|
---|
[7] | 20 | <repository>
|
---|
| 21 | <id>artifactory.ewi.tudelft.nl</id>
|
---|
| 22 | <url>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
|
---|
[12] | 23 | <snapshots>
|
---|
| 24 | <enabled>false</enabled>
|
---|
| 25 | </snapshots>
|
---|
[7] | 26 | </repository>
|
---|
[12] | 27 | </repositories>
|
---|
| 28 | <pluginRepositories>
|
---|
| 29 | <pluginRepository>
|
---|
| 30 | <id>central</id>
|
---|
| 31 | <url>https://repo1.maven.org/</url>
|
---|
| 32 | </pluginRepository>
|
---|
| 33 | <pluginRepository>
|
---|
| 34 | <id>jfrog-plugins-release</id>
|
---|
| 35 | <name>plugins-release</name>
|
---|
| 36 | <url>https://oss.jfrog.org/artifactory/plugins-release</url>
|
---|
| 37 | </pluginRepository>
|
---|
| 38 | </pluginRepositories>
|
---|
[7] | 39 |
|
---|
| 40 | <dependencies>
|
---|
| 41 | <dependency>
|
---|
| 42 | <groupId>geniusweb</groupId>
|
---|
| 43 | <artifactId>party</artifactId>
|
---|
| 44 | <version>${geniusweb.version}</version>
|
---|
| 45 | </dependency>
|
---|
| 46 | <dependency>
|
---|
| 47 | <groupId>geniusweb</groupId>
|
---|
| 48 | <artifactId>profileconnection</artifactId>
|
---|
[10] | 49 | <version>${geniusweb.version}</version>
|
---|
[7] | 50 | </dependency>
|
---|
| 51 | </dependencies>
|
---|
| 52 |
|
---|
| 53 | <build>
|
---|
| 54 | <plugins>
|
---|
| 55 | <plugin>
|
---|
| 56 | <groupId>org.apache.maven.plugins</groupId>
|
---|
| 57 | <artifactId>maven-compiler-plugin</artifactId>
|
---|
| 58 | <version>3.8.0</version>
|
---|
| 59 | <configuration>
|
---|
| 60 | <source>1.8</source>
|
---|
| 61 | <target>1.8</target>
|
---|
| 62 | </configuration>
|
---|
| 63 | </plugin>
|
---|
[8] | 64 |
|
---|
| 65 | <plugin>
|
---|
| 66 | <groupId>org.apache.maven.plugins</groupId>
|
---|
| 67 | <artifactId>maven-jar-plugin</artifactId>
|
---|
| 68 | <version>3.2.0</version>
|
---|
| 69 | <configuration>
|
---|
| 70 | <archive>
|
---|
| 71 | <manifest>
|
---|
| 72 | <mainClass>geniusweb.exampleparties.nataliaparty.Group7_Main</mainClass>
|
---|
| 73 | </manifest>
|
---|
| 74 | </archive>
|
---|
| 75 | </configuration>
|
---|
| 76 | </plugin>
|
---|
| 77 |
|
---|
| 78 |
|
---|
| 79 | <plugin>
|
---|
| 80 | <groupId>org.apache.maven.plugins</groupId>
|
---|
| 81 | <artifactId>maven-assembly-plugin</artifactId>
|
---|
| 82 | <version>2.4.1</version>
|
---|
| 83 | <configuration>
|
---|
| 84 | <!-- get all project dependencies -->
|
---|
| 85 | <descriptorRefs>
|
---|
| 86 | <descriptorRef>jar-with-dependencies</descriptorRef>
|
---|
| 87 | </descriptorRefs>
|
---|
| 88 | <archive>
|
---|
| 89 | <manifest>
|
---|
| 90 | <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
---|
| 91 | <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
|
---|
| 92 | <mainClass>geniusweb.exampleparties.nataliaparty.Group7_Main</mainClass>
|
---|
| 93 | </manifest>
|
---|
| 94 | </archive>
|
---|
| 95 | </configuration>
|
---|
| 96 | <executions>
|
---|
| 97 | <execution>
|
---|
| 98 | <id>make-assembly</id>
|
---|
| 99 | <!-- bind to the packaging phase -->
|
---|
| 100 | <phase>package</phase>
|
---|
| 101 | <goals>
|
---|
| 102 | <goal>single</goal>
|
---|
| 103 | </goals>
|
---|
| 104 | </execution>
|
---|
| 105 | </executions>
|
---|
| 106 | </plugin>
|
---|
| 107 |
|
---|
[7] | 108 | </plugins>
|
---|
| 109 | </build>
|
---|
| 110 | </project> |
---|