source: audiogui/pom.xml

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

ignore generated, update pom to include deploy and jar-with-dependencies

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