source: anac2020/BlingBling/pom.xml@ 77

Last change on this file since 77 was 72, checked in by wouter, 2 years ago

#2068 bump to 2.1.3. Taken pompfan out of maintenance as it uses custom NegoRunner

File size: 8.0 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>geniusweb</groupId>
7 <artifactId>blingbling</artifactId>
8 <version>2.1.3</version>
9 <packaging>jar</packaging>
10
11
12 <properties>
13 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14 <maven.compiler.target>1.8</maven.compiler.target>
15 <maven.compiler.source>1.8</maven.compiler.source>
16 <basedir>.</basedir>
17 <passwd>${env.ARTIFACTORY_PASS}</passwd>
18 <jackson-2-version>2.12.3</jackson-2-version>
19 <geniusweb.version>${project.version}</geniusweb.version>
20 </properties>
21
22 <distributionManagement>
23 <repository>
24 <id>artifactory.ewi.tudelft.nl</id>
25 <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
26 </repository>
27 </distributionManagement>
28
29
30 <dependencies>
31
32
33 <dependency>
34 <groupId>geniusweb</groupId>
35 <artifactId>party</artifactId>
36 <version>${geniusweb.version}</version>
37 </dependency>
38
39 <dependency>
40 <groupId>geniusweb</groupId>
41 <artifactId>bidspace</artifactId>
42 <version>${geniusweb.version}</version>
43 </dependency>
44 <dependency>
45 <groupId>geniusweb</groupId>
46 <artifactId>profileconnection</artifactId>
47 <version>${geniusweb.version}</version>
48 </dependency>
49 <dependency>
50 <groupId>tudelft.utilities</groupId>
51 <artifactId>logging</artifactId>
52 <version>1.0.0</version>
53 </dependency>
54 <dependency>
55 <groupId>tudelft.utilities</groupId>
56 <artifactId>utilities</artifactId>
57 <version>1.1.0</version>
58 </dependency>
59
60
61 <!-- the core, which includes Streaming API, shared low-level abstractions
62 (but NOT data-binding) -->
63 <dependency>
64 <groupId>com.fasterxml.jackson.core</groupId>
65 <artifactId>jackson-core</artifactId>
66 <version>${jackson-2-version}</version>
67 <scope>test</scope>
68 </dependency>
69
70 <!-- Just the annotations; use this dependency if you want to attach annotations
71 to classes without connecting them to the code. -->
72 <dependency>
73 <groupId>com.fasterxml.jackson.core</groupId>
74 <artifactId>jackson-annotations</artifactId>
75 <version>${jackson-2-version}</version>
76 <scope>test</scope>
77 </dependency>
78
79 <!-- databinding; ObjectMapper, JsonNode and related classes are here -->
80 <dependency>
81 <groupId>com.fasterxml.jackson.core</groupId>
82 <artifactId>jackson-databind</artifactId>
83 <version>${jackson-2-version}</version>
84 <scope>test</scope>
85 </dependency>
86
87 <!-- smile (binary JSON). Other artifacts in this group do other formats. -->
88 <dependency>
89 <groupId>com.fasterxml.jackson.dataformat</groupId>
90 <artifactId>jackson-dataformat-smile</artifactId>
91 <version>${jackson-2-version}</version>
92 <scope>test</scope>
93 </dependency>
94 <!-- JAX-RS provider -->
95 <dependency>
96 <groupId>com.fasterxml.jackson.jaxrs</groupId>
97 <artifactId>jackson-jaxrs-json-provider</artifactId>
98 <version>${jackson-2-version}</version>
99 <scope>test</scope>
100 </dependency>
101 <!-- Support for JAX-B annotations as additional configuration -->
102 <dependency>
103 <groupId>com.fasterxml.jackson.module</groupId>
104 <artifactId>jackson-module-jaxb-annotations</artifactId>
105 <version>${jackson-2-version}</version>
106 <scope>test</scope>
107 </dependency>
108 <dependency>
109 <groupId>junit</groupId>
110 <artifactId>junit</artifactId>
111 <version>4.12</version>
112 <scope>test</scope>
113 </dependency>
114 <dependency>
115 <groupId>org.mockito</groupId>
116 <artifactId>mockito-all</artifactId>
117 <version>1.9.5</version>
118 <scope>test</scope>
119 </dependency>
120 <dependency>
121 <groupId>tudelft.utilities</groupId>
122 <artifactId>junit</artifactId>
123 <version>1.0.1</version>
124 <scope>test</scope>
125 </dependency>
126
127
128 <dependency>
129 <groupId>com.github.neuroph</groupId>
130 <artifactId>neuroph-core</artifactId>
131 <version>2.98</version>
132 </dependency>
133
134 <dependency>
135 <groupId>org.nd4j</groupId>
136 <artifactId>nd4j-native-platform</artifactId>
137 <version>0.8.0</version>
138 </dependency>
139
140
141 </dependencies>
142
143
144 <repositories>
145 <repository>
146 <id>artifactory.ewi.tudelft.nl</id>
147 <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
148 <snapshots>
149 <enabled>false</enabled>
150 </snapshots>
151 </repository>
152
153 </repositories>
154
155 <pluginRepositories>
156 <pluginRepository>
157 <id>jcenter</id>
158 <url>https://jcenter.bintray.com</url>
159 </pluginRepository>
160 </pluginRepositories>
161
162
163
164 <build>
165
166 <plugins>
167 <plugin>
168 <groupId>org.apache.maven.plugins</groupId>
169 <artifactId>maven-compiler-plugin</artifactId>
170 <version>3.8.0</version>
171 <configuration>
172 <source>1.8</source>
173 <target>1.8</target>
174 </configuration>
175 </plugin>
176 <plugin>
177 <groupId>org.apache.maven.plugins</groupId>
178 <artifactId>maven-source-plugin</artifactId>
179 <version>3.1.0</version>
180 <executions>
181 <execution>
182 <id>attach-sources</id>
183 <goals>
184 <goal>jar</goal>
185 </goals>
186 </execution>
187 </executions>
188 </plugin>
189
190 <plugin>
191 <groupId>org.apache.maven.plugins</groupId>
192 <artifactId>maven-jar-plugin</artifactId>
193 <version>3.2.0</version>
194 <configuration>
195 <archive>
196 <manifest>
197 <mainClass>geniusweb.blingbling.Blingbling</mainClass>
198 </manifest>
199 </archive>
200 </configuration>
201 </plugin>
202
203 <plugin>
204 <groupId>org.apache.maven.plugins</groupId>
205 <artifactId>maven-javadoc-plugin</artifactId>
206 <version>2.10.1</version>
207 <executions>
208 <execution>
209 <id>attach-javadocs</id>
210 <goals>
211 <goal>jar</goal>
212 </goals>
213 <configuration>
214 <additionalparam>${javadoc.opts}</additionalparam>
215 <additionalparam>-Xdoclint:none</additionalparam>
216 </configuration>
217 </execution>
218 </executions>
219 </plugin>
220
221 <plugin>
222 <groupId>org.jfrog.buildinfo</groupId>
223 <artifactId>artifactory-maven-plugin</artifactId>
224 <version>2.6.1</version>
225 <executions>
226 <execution>
227 <id>build-info</id>
228 <goals>
229 <goal>publish</goal>
230 </goals>
231 <configuration>
232 <publisher>
233 <contextUrl>https://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
234 <repoKey>libs-release</repoKey>
235 <username>wouter</username>
236 <password>${passwd}</password>
237 </publisher>
238 </configuration>
239 </execution>
240 </executions>
241 </plugin>
242
243 <plugin>
244 <groupId>org.apache.maven.plugins</groupId>
245 <artifactId>maven-assembly-plugin</artifactId>
246 <version>2.4.1</version>
247 <configuration>
248 <!-- get all project dependencies -->
249 <descriptorRefs>
250 <descriptorRef>jar-with-dependencies</descriptorRef>
251 </descriptorRefs>
252 <archive>
253 <manifest>
254 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
255 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
256 <mainClass>geniusweb.blingbling.Blingbling</mainClass>
257 </manifest>
258 </archive>
259 </configuration>
260 <executions>
261 <execution>
262 <id>make-assembly</id>
263 <!-- bind to the packaging phase -->
264 <phase>package</phase>
265 <goals>
266 <goal>single</goal>
267 </goals>
268 </execution>
269 </executions>
270 </plugin>
271
272
273 </plugins>
274
275 <pluginManagement>
276 <plugins>
277 <plugin>
278 <groupId>org.eclipse.m2e</groupId>
279 <artifactId>lifecycle-mapping</artifactId>
280 <version>1.0.0</version>
281 <configuration>
282 <lifecycleMappingMetadata>
283 <pluginExecutions>
284 <pluginExecution>
285 <pluginExecutionFilter>
286 <groupId>org.jfrog.buildinfo</groupId>
287 <artifactId>artifactory-maven-plugin</artifactId>
288 <versionRange>[1.0.0,)</versionRange>
289 <goals>
290 <goal>publish</goal>
291 </goals>
292 </pluginExecutionFilter>
293 <action>
294 <ignore />
295 </action>
296 </pluginExecution>
297 </pluginExecutions>
298 </lifecycleMappingMetadata>
299 </configuration>
300 </plugin>
301 </plugins>
302 </pluginManagement>
303
304
305 </build>
306
307</project>
Note: See TracBrowser for help on using the repository browser.