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