source: trimtool/pom.xml@ 11

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

remove obsolete plugin

File size: 1.2 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.0</version>
7
8 <dependencies>
9 <dependency>
10 <groupId>junit</groupId>
11 <artifactId>junit</artifactId>
12 <version>4.11</version>
13 <scope>test</scope>
14 </dependency>
15 <dependency>
16 <groupId>nl.tudelft.ii</groupId>
17 <artifactId>audiopipe</artifactId>
18 <version>1.0.4</version>
19 </dependency>
20 </dependencies>
21
22
23
24 <build>
25 <plugins>
26
27
28 <plugin>
29 <artifactId>maven-assembly-plugin</artifactId>
30 <configuration>
31 <archive>
32 <manifest>
33 <addClasspath>true</addClasspath>
34 <mainClass>TrimFiles</mainClass>
35 </manifest>
36 </archive>
37 <descriptorRefs>
38 <descriptorRef>jar-with-dependencies</descriptorRef>
39 </descriptorRefs>
40 </configuration>
41 <executions>
42 <execution>
43 <id>make-my-jar-with-dependencies</id>
44 <phase>package</phase>
45 <goals>
46 <goal>single</goal>
47 </goals>
48 </execution>
49 </executions>
50 </plugin>
51
52 </plugins>
53 </build>
54</project>
Note: See TracBrowser for help on using the repository browser.