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 |
|
---|
24 | <repositories>
|
---|
25 | <repository>
|
---|
26 | <id>artifactory.ewi.tudelft.nl</id>
|
---|
27 | <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
|
---|
28 | <snapshots>
|
---|
29 | <enabled>false</enabled>
|
---|
30 | </snapshots>
|
---|
31 | </repository>
|
---|
32 | </repositories>
|
---|
33 |
|
---|
34 | <pluginRepositories>
|
---|
35 | <pluginRepository>
|
---|
36 | <id>central</id>
|
---|
37 | <url>https://repo1.maven.org/maven2</url>
|
---|
38 | </pluginRepository>
|
---|
39 | <pluginRepository>
|
---|
40 | <id>artifactory.ewi.tudelft.nl</id>
|
---|
41 | <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
|
---|
42 | </pluginRepository>
|
---|
43 | </pluginRepositories>
|
---|
44 |
|
---|
45 | <dependencies>
|
---|
46 | <dependency>
|
---|
47 | <groupId>nl.tudelft.ii</groupId>
|
---|
48 | <artifactId>pipe</artifactId>
|
---|
49 | <version>1.0.4</version>
|
---|
50 | </dependency>
|
---|
51 | <dependency>
|
---|
52 | <groupId>com.fasterxml.jackson.core</groupId>
|
---|
53 | <artifactId>jackson-core</artifactId>
|
---|
54 | <version>${jackson-2-version}</version>
|
---|
55 | </dependency>
|
---|
56 | <!-- Just the annotations; use this dependency if you want to attach annotations
|
---|
57 | to classes without connecting them to the code. -->
|
---|
58 | <dependency>
|
---|
59 | <groupId>com.fasterxml.jackson.core</groupId>
|
---|
60 | <artifactId>jackson-annotations</artifactId>
|
---|
61 | <version>${jackson-2-version}</version>
|
---|
62 | </dependency>
|
---|
63 | <!-- databinding; ObjectMapper, JsonNode and related classes are here -->
|
---|
64 | <dependency>
|
---|
65 | <groupId>com.fasterxml.jackson.core</groupId>
|
---|
66 | <artifactId>jackson-databind</artifactId>
|
---|
67 | <version>${jackson-2-version}</version>
|
---|
68 | </dependency>
|
---|
69 | <!-- smile (binary JSON). Other artifacts in this group do other formats. -->
|
---|
70 | <dependency>
|
---|
71 | <groupId>com.fasterxml.jackson.dataformat</groupId>
|
---|
72 | <artifactId>jackson-dataformat-smile</artifactId>
|
---|
73 | <version>${jackson-2-version}</version>
|
---|
74 | </dependency>
|
---|
75 | <!-- JAX-RS provider -->
|
---|
76 | <dependency>
|
---|
77 | <groupId>com.fasterxml.jackson.jaxrs</groupId>
|
---|
78 | <artifactId>jackson-jaxrs-json-provider</artifactId>
|
---|
79 | <version>${jackson-2-version}</version>
|
---|
80 | </dependency>
|
---|
81 |
|
---|
82 | <dependency>
|
---|
83 | <groupId>junit</groupId>
|
---|
84 | <artifactId>junit</artifactId>
|
---|
85 | <version>4.11</version>
|
---|
86 | <scope>test</scope>
|
---|
87 | </dependency>
|
---|
88 |
|
---|
89 | </dependencies>
|
---|
90 |
|
---|
91 | <build>
|
---|
92 | <plugins>
|
---|
93 |
|
---|
94 | <plugin>
|
---|
95 | <groupId>org.apache.maven.plugins</groupId>
|
---|
96 | <artifactId>maven-source-plugin</artifactId>
|
---|
97 | <version>3.1.0</version>
|
---|
98 | <executions>
|
---|
99 | <execution>
|
---|
100 | <id>attach-sources</id>
|
---|
101 | <goals>
|
---|
102 | <goal>jar</goal>
|
---|
103 | </goals>
|
---|
104 | </execution>
|
---|
105 | </executions>
|
---|
106 | </plugin>
|
---|
107 |
|
---|
108 | <plugin>
|
---|
109 | <groupId>org.apache.maven.plugins</groupId>
|
---|
110 | <artifactId>maven-javadoc-plugin</artifactId>
|
---|
111 | <version>3.2.0</version>
|
---|
112 | <executions>
|
---|
113 | <execution>
|
---|
114 | <id>attach-javadocs</id>
|
---|
115 | <goals>
|
---|
116 | <goal>jar</goal>
|
---|
117 | </goals>
|
---|
118 | </execution>
|
---|
119 | </executions>
|
---|
120 | </plugin>
|
---|
121 |
|
---|
122 |
|
---|
123 | <plugin>
|
---|
124 | <artifactId>maven-assembly-plugin</artifactId>
|
---|
125 | <version>2.4.1</version>
|
---|
126 | <configuration>
|
---|
127 | <descriptorRefs>
|
---|
128 | <descriptorRef>jar-with-dependencies</descriptorRef>
|
---|
129 | </descriptorRefs>
|
---|
130 | <archive>
|
---|
131 | <manifest>
|
---|
132 | <addClasspath>true</addClasspath>
|
---|
133 | <mainClass>nl.tudelft.App</mainClass>
|
---|
134 | </manifest>
|
---|
135 | </archive>
|
---|
136 | <descriptorRefs>
|
---|
137 | <descriptorRef>jar-with-dependencies</descriptorRef>
|
---|
138 | </descriptorRefs>
|
---|
139 | </configuration>
|
---|
140 | <executions>
|
---|
141 | <execution>
|
---|
142 | <id>make-my-jar-with-dependencies</id>
|
---|
143 | <phase>package</phase>
|
---|
144 | <goals>
|
---|
145 | <goal>single</goal>
|
---|
146 | </goals>
|
---|
147 | </execution>
|
---|
148 | </executions>
|
---|
149 | </plugin>
|
---|
150 |
|
---|
151 |
|
---|
152 | <plugin>
|
---|
153 | <groupId>org.jfrog.buildinfo</groupId>
|
---|
154 | <artifactId>artifactory-maven-plugin</artifactId>
|
---|
155 | <version>3.2.3</version>
|
---|
156 | <executions>
|
---|
157 | <execution>
|
---|
158 | <id>build-info</id>
|
---|
159 | <goals>
|
---|
160 | <goal>publish</goal>
|
---|
161 | </goals>
|
---|
162 | <configuration>
|
---|
163 | <publisher>
|
---|
164 | <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
|
---|
165 | <repoKey>libs-release</repoKey>
|
---|
166 | <username>wouter</username>
|
---|
167 | <password>${passwd}</password>
|
---|
168 | </publisher>
|
---|
169 | </configuration>
|
---|
170 | </execution>
|
---|
171 | </executions>
|
---|
172 | </plugin>
|
---|
173 |
|
---|
174 |
|
---|
175 | </plugins>
|
---|
176 | </build>
|
---|
177 |
|
---|
178 | </project>
|
---|