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>audiopipe</artifactId>
|
---|
8 | <version>1.0.4</version>
|
---|
9 | <packaging>jar</packaging>
|
---|
10 |
|
---|
11 | <name>audiofilter</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>pipe</artifactId>
|
---|
27 | <version>1.0.0</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 |
|
---|
60 | <dependency>
|
---|
61 | <groupId>junit</groupId>
|
---|
62 | <artifactId>junit</artifactId>
|
---|
63 | <version>4.11</version>
|
---|
64 | <scope>test</scope>
|
---|
65 | </dependency>
|
---|
66 |
|
---|
67 | </dependencies>
|
---|
68 |
|
---|
69 | <build>
|
---|
70 | <plugins>
|
---|
71 | </plugins>
|
---|
72 | </build>
|
---|
73 |
|
---|
74 | </project>
|
---|