source: audioconverter/pom.xml

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

bump to 1.0.4 and java 8

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