source: anac2021/gambleragent/pom.xml

Last change on this file 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.5 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.exampleparties.anac2021</groupId>
7 <artifactId>gambleragent</artifactId> <!-- TODO: change name -->
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.9.6</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 <dependency>
39 <groupId>geniusweb</groupId>
40 <artifactId>opponentmodel</artifactId>
41 <version>${geniusweb.version}</version>
42 </dependency>
43 <dependency>
44 <groupId>geniusweb</groupId>
45 <artifactId>boa</artifactId>
46 <version>${geniusweb.version}</version>
47 </dependency>
48 <dependency>
49 <groupId>geniusweb</groupId>
50 <artifactId>bidspace</artifactId>
51 <version>${geniusweb.version}</version>
52 </dependency>
53 <dependency>
54 <groupId>geniusweb</groupId>
55 <artifactId>profileconnection</artifactId>
56 <version>${geniusweb.version}</version>
57 </dependency>
58 <dependency>
59 <groupId>tudelft.utilities</groupId>
60 <artifactId>logging</artifactId>
61 <version>1.0.1</version>
62 </dependency>
63 <dependency>
64 <groupId>tudelft.utilities</groupId>
65 <artifactId>utilities</artifactId>
66 <version>1.1.0</version>
67 </dependency>
68
69 <!-- the core, which includes Streaming API, shared low-level abstractions
70 (but NOT data-binding) -->
71 <dependency>
72 <groupId>com.fasterxml.jackson.core</groupId>
73 <artifactId>jackson-core</artifactId>
74 <version>${jackson-2-version}</version>
75 </dependency>
76
77 <!-- Just the annotations; use this dependency if you want to attach annotations
78 to classes without connecting them to the code. -->
79 <dependency>
80 <groupId>com.fasterxml.jackson.core</groupId>
81 <artifactId>jackson-annotations</artifactId>
82 <version>${jackson-2-version}</version>
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 </dependency>
91
92 <!-- smile (binary JSON). Other artifacts in this group do other formats. -->
93 <dependency>
94 <groupId>com.fasterxml.jackson.dataformat</groupId>
95 <artifactId>jackson-dataformat-smile</artifactId>
96 <version>${jackson-2-version}</version>
97 </dependency>
98 <!-- JAX-RS provider -->
99 <dependency>
100 <groupId>com.fasterxml.jackson.jaxrs</groupId>
101 <artifactId>jackson-jaxrs-json-provider</artifactId>
102 <version>${jackson-2-version}</version>
103 </dependency>
104 <!-- Support for JAX-B annotations as additional configuration -->
105 <dependency>
106 <groupId>com.fasterxml.jackson.module</groupId>
107 <artifactId>jackson-module-jaxb-annotations</artifactId>
108 <version>${jackson-2-version}</version>
109 </dependency>
110 <dependency>
111 <groupId>junit</groupId>
112 <artifactId>junit</artifactId>
113 <version>4.12</version>
114 <scope>test</scope>
115 </dependency>
116 <dependency>
117 <groupId>org.mockito</groupId>
118 <artifactId>mockito-all</artifactId>
119 <version>1.9.5</version>
120 <scope>test</scope>
121 </dependency>
122 <dependency>
123 <groupId>tudelft.utilities</groupId>
124 <artifactId>junit</artifactId>
125 <version>1.0.5</version>
126 <scope>test</scope>
127 </dependency>
128
129 </dependencies>
130
131
132 <repositories>
133 <repository>
134 <id>artifactory.ewi.tudelft.nl</id>
135 <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
136 <snapshots>
137 <enabled>false</enabled>
138 </snapshots>
139 </repository>
140 </repositories>
141
142 <pluginRepositories>
143 <pluginRepository>
144 <id>central</id>
145 <url>https://repo1.maven.org/maven2/</url>
146 </pluginRepository>
147 <pluginRepository>
148 <id>jfrog-plugins-release</id>
149 <name>plugins-release</name>
150 <url>https://oss.jfrog.org/artifactory/plugins-release</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>geniusweb.exampleparties.anac2021.gambleragent.GamblerAgent</mainClass> <!-- TODO: change name -->
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 <configuration>
198 <source>8</source>
199 </configuration>
200 <version>3.2.0</version>
201 <executions>
202 <execution>
203 <id>attach-javadocs</id>
204 <goals>
205 <goal>jar</goal>
206 </goals>
207 </execution>
208 </executions>
209 </plugin>
210
211 <plugin>
212 <groupId>org.apache.maven.plugins</groupId>
213 <artifactId>maven-assembly-plugin</artifactId>
214 <version>2.4.1</version>
215 <configuration>
216 <!-- get all project dependencies -->
217 <descriptorRefs>
218 <descriptorRef>jar-with-dependencies</descriptorRef>
219 </descriptorRefs>
220 <archive>
221 <manifest>
222 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
223 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
224 <mainClass>geniusweb.exampleparties.anac2021.gambleragent.GamblerAgent</mainClass> <!-- TODO: change name -->
225 </manifest>
226 </archive>
227 </configuration>
228 <executions>
229 <execution>
230 <id>make-assembly</id>
231 <!-- bind to the packaging phase -->
232 <phase>package</phase>
233 <goals>
234 <goal>single</goal>
235 </goals>
236 </execution>
237 </executions>
238 </plugin>
239
240
241 </plugins>
242
243 <pluginManagement>
244 <plugins>
245 <plugin>
246 <groupId>org.eclipse.m2e</groupId>
247 <artifactId>lifecycle-mapping</artifactId>
248 <version>1.0.0</version>
249 <configuration>
250 <lifecycleMappingMetadata>
251 <pluginExecutions>
252 <pluginExecution>
253 <pluginExecutionFilter>
254 <groupId>org.jfrog.buildinfo</groupId>
255 <artifactId>artifactory-maven-plugin</artifactId>
256 <versionRange>[1.0.0,)</versionRange>
257 <goals>
258 <goal>publish</goal>
259 </goals>
260 </pluginExecutionFilter>
261 <action>
262 <ignore />
263 </action>
264 </pluginExecution>
265 </pluginExecutions>
266 </lifecycleMappingMetadata>
267 </configuration>
268 </plugin>
269 </plugins>
270 </pluginManagement>
271
272
273 </build>
274</project>
Note: See TracBrowser for help on using the repository browser.