source: anac2020/BlingBling/pom.xml@ 13

Last change on this file since 13 was 1, checked in by wouter, 4 years ago

#1910 added anac2020 parties

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