source: trimtool/pom.xml

Last change on this file was 18, checked in by wouter, 3 years ago

bump to 1.0.4 and java 8

File size: 4.0 KB
Line 
1<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>AudioTrimTool</groupId>
5 <artifactId>AudioTrimTool</artifactId>
6 <version>1.0.4</version>
7
8 <properties>
9 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
10 <maven.compiler.target>1.8</maven.compiler.target>
11 <maven.compiler.source>1.8</maven.compiler.source>
12 <basedir>.</basedir>
13 <passwd>${env.ARTIFACTORY_PASS}</passwd>
14 <jackson-2-version>2.12.3</jackson-2-version>
15 </properties>
16
17 <dependencies>
18 <dependency>
19 <groupId>junit</groupId>
20 <artifactId>junit</artifactId>
21 <version>4.11</version>
22 <scope>test</scope>
23 </dependency>
24 <dependency>
25 <groupId>nl.tudelft.ii</groupId>
26 <artifactId>audiopipe</artifactId>
27 <version>1.0.4</version>
28 </dependency>
29 </dependencies>
30
31
32 <repositories>
33 <repository>
34 <id>artifactory.ewi.tudelft.nl</id>
35 <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
36 <snapshots>
37 <enabled>false</enabled>
38 </snapshots>
39 </repository>
40 </repositories>
41
42 <pluginRepositories>
43 <pluginRepository>
44 <id>central</id>
45 <url>https://repo1.maven.org/maven2</url>
46 </pluginRepository>
47 <pluginRepository>
48 <id>artifactory.ewi.tudelft.nl</id>
49 <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
50 </pluginRepository>
51 </pluginRepositories>
52
53 <build>
54 <plugins>
55
56
57 <plugin>
58 <artifactId>maven-assembly-plugin</artifactId>
59 <configuration>
60 <archive>
61 <manifest>
62 <addClasspath>true</addClasspath>
63 <mainClass>TrimFiles</mainClass>
64 </manifest>
65 </archive>
66 <descriptorRefs>
67 <descriptorRef>jar-with-dependencies</descriptorRef>
68 </descriptorRefs>
69 </configuration>
70 <executions>
71 <execution>
72 <id>make-my-jar-with-dependencies</id>
73 <phase>package</phase>
74 <goals>
75 <goal>single</goal>
76 </goals>
77 </execution>
78 </executions>
79 </plugin>
80
81
82 <plugin>
83 <groupId>org.apache.maven.plugins</groupId>
84 <artifactId>maven-source-plugin</artifactId>
85 <version>3.1.0</version>
86 <executions>
87 <execution>
88 <id>attach-sources</id>
89 <goals>
90 <goal>jar</goal>
91 </goals>
92 </execution>
93 </executions>
94 </plugin>
95
96 <plugin>
97 <groupId>org.apache.maven.plugins</groupId>
98 <artifactId>maven-javadoc-plugin</artifactId>
99 <version>3.2.0</version>
100 <executions>
101 <execution>
102 <id>attach-javadocs</id>
103 <goals>
104 <goal>jar</goal>
105 </goals>
106 </execution>
107 </executions>
108 </plugin>
109
110
111 <plugin>
112 <artifactId>maven-assembly-plugin</artifactId>
113 <version>2.4.1</version>
114 <configuration>
115 <descriptorRefs>
116 <descriptorRef>jar-with-dependencies</descriptorRef>
117 </descriptorRefs>
118 <archive>
119 <manifest>
120 <addClasspath>true</addClasspath>
121 <mainClass>nl.tudelft.App</mainClass>
122 </manifest>
123 </archive>
124 <descriptorRefs>
125 <descriptorRef>jar-with-dependencies</descriptorRef>
126 </descriptorRefs>
127 </configuration>
128 <executions>
129 <execution>
130 <id>make-my-jar-with-dependencies</id>
131 <phase>package</phase>
132 <goals>
133 <goal>single</goal>
134 </goals>
135 </execution>
136 </executions>
137 </plugin>
138
139
140 <plugin>
141 <groupId>org.jfrog.buildinfo</groupId>
142 <artifactId>artifactory-maven-plugin</artifactId>
143 <version>3.2.3</version>
144 <executions>
145 <execution>
146 <id>build-info</id>
147 <goals>
148 <goal>publish</goal>
149 </goals>
150 <configuration>
151 <publisher>
152 <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
153 <repoKey>libs-release</repoKey>
154 <username>wouter</username>
155 <password>${passwd}</password>
156 </publisher>
157 </configuration>
158 </execution>
159 </executions>
160 </plugin>
161
162
163 </plugins>
164 </build>
165</project>
Note: See TracBrowser for help on using the repository browser.