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 |
|
---|
6 | <groupId>nl.tudelft.ii</groupId>
|
---|
7 | <artifactId>audiogui</artifactId>
|
---|
8 | <version>1.0.4</version>
|
---|
9 | <packaging>jar</packaging>
|
---|
10 |
|
---|
11 | <name>audioGUI</name>
|
---|
12 | <url>http://maven.apache.org</url>
|
---|
13 |
|
---|
14 | <properties>
|
---|
15 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
---|
16 | <maven.compiler.target>1.8</maven.compiler.target>
|
---|
17 | <maven.compiler.source>1.8</maven.compiler.source>
|
---|
18 | <basedir>.</basedir>
|
---|
19 | <passwd>${env.ARTIFACTORY_PASS}</passwd>
|
---|
20 | <jackson-2-version>2.12.3</jackson-2-version>
|
---|
21 | </properties>
|
---|
22 |
|
---|
23 | <dependencies>
|
---|
24 | <dependency>
|
---|
25 | <groupId>nl.tudelft.ii</groupId>
|
---|
26 | <artifactId>audiopipe</artifactId>
|
---|
27 | <version>1.0.4</version>
|
---|
28 | </dependency>
|
---|
29 | <dependency>
|
---|
30 | <groupId>com.fasterxml.jackson.core</groupId>
|
---|
31 | <artifactId>jackson-core</artifactId>
|
---|
32 | <version>${jackson-2-version}</version>
|
---|
33 | </dependency>
|
---|
34 | <!-- Just the annotations; use this dependency if you want to attach annotations
|
---|
35 | to classes without connecting them to the code. -->
|
---|
36 | <dependency>
|
---|
37 | <groupId>com.fasterxml.jackson.core</groupId>
|
---|
38 | <artifactId>jackson-annotations</artifactId>
|
---|
39 | <version>${jackson-2-version}</version>
|
---|
40 | </dependency>
|
---|
41 | <!-- databinding; ObjectMapper, JsonNode and related classes are here -->
|
---|
42 | <dependency>
|
---|
43 | <groupId>com.fasterxml.jackson.core</groupId>
|
---|
44 | <artifactId>jackson-databind</artifactId>
|
---|
45 | <version>${jackson-2-version}</version>
|
---|
46 | </dependency>
|
---|
47 | <!-- smile (binary JSON). Other artifacts in this group do other formats. -->
|
---|
48 | <dependency>
|
---|
49 | <groupId>com.fasterxml.jackson.dataformat</groupId>
|
---|
50 | <artifactId>jackson-dataformat-smile</artifactId>
|
---|
51 | <version>${jackson-2-version}</version>
|
---|
52 | </dependency>
|
---|
53 | <!-- JAX-RS provider -->
|
---|
54 | <dependency>
|
---|
55 | <groupId>com.fasterxml.jackson.jaxrs</groupId>
|
---|
56 | <artifactId>jackson-jaxrs-json-provider</artifactId>
|
---|
57 | <version>${jackson-2-version}</version>
|
---|
58 | </dependency>
|
---|
59 | <!-- Support for JAX-B annotations as additional configuration -->
|
---|
60 |
|
---|
61 | <dependency>
|
---|
62 | <groupId>junit</groupId>
|
---|
63 | <artifactId>junit</artifactId>
|
---|
64 | <version>4.11</version>
|
---|
65 | <scope>test</scope>
|
---|
66 | </dependency>
|
---|
67 | </dependencies>
|
---|
68 |
|
---|
69 | <build>
|
---|
70 | <plugins>
|
---|
71 |
|
---|
72 | <plugin>
|
---|
73 | <artifactId>maven-assembly-plugin</artifactId>
|
---|
74 | <configuration>
|
---|
75 | <archive>
|
---|
76 | <manifest>
|
---|
77 | <addClasspath>true</addClasspath>
|
---|
78 | <mainClass>nl.tudelft.App</mainClass>
|
---|
79 | </manifest>
|
---|
80 | </archive>
|
---|
81 | <descriptorRefs>
|
---|
82 | <descriptorRef>jar-with-dependencies</descriptorRef>
|
---|
83 | </descriptorRefs>
|
---|
84 | </configuration>
|
---|
85 | <executions>
|
---|
86 | <execution>
|
---|
87 | <id>make-my-jar-with-dependencies</id>
|
---|
88 | <phase>package</phase>
|
---|
89 | <goals>
|
---|
90 | <goal>single</goal>
|
---|
91 | </goals>
|
---|
92 | </execution>
|
---|
93 | </executions>
|
---|
94 | </plugin>
|
---|
95 |
|
---|
96 | </plugins>
|
---|
97 | </build>
|
---|
98 |
|
---|
99 | </project>
|
---|