source: ai2020/group62/pom.xml@ 42

Last change on this file since 42 was 32, checked in by wouter, 3 years ago

#3

File size: 10.5 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6
7 <groupId>geniusweb.group62</groupId>
8 <artifactId>bidr</artifactId>
9
10 <version>2.0.4</version>
11 <packaging>jar</packaging>
12
13 <properties>
14 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15 <maven.compiler.target>1.8</maven.compiler.target>
16 <maven.compiler.source>1.8</maven.compiler.source>
17 <basedir>.</basedir>
18 <jackson-2-version>2.12.3</jackson-2-version>
19 <geniusweb.version>${project.version}</geniusweb.version>
20 <main-class-path>geniusweb.group62.bidr.Bidr</main-class-path>
21 </properties>
22
23
24 <distributionManagement>
25 <repository>
26 <id>artifactory.ewi.tudelft.nl</id>
27 <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
28 </repository>
29 </distributionManagement>
30
31 <dependencies>
32 <dependency>
33 <groupId>geniusweb</groupId>
34 <artifactId>party</artifactId>
35 <version>${geniusweb.version}</version>
36 </dependency>
37
38 <dependency>
39 <groupId>geniusweb.exampleparties</groupId>
40 <artifactId>randomparty</artifactId>
41 <version>${geniusweb.version}</version>
42 </dependency>
43 <dependency>
44 <groupId>geniusweb.exampleparties</groupId>
45 <artifactId>timedependentparty</artifactId>
46 <version>${geniusweb.version}</version>
47 </dependency>
48 <dependency>
49 <groupId>geniusweb.exampleparties.anac2019</groupId>
50 <artifactId>winkyagent</artifactId>
51 <version>${geniusweb.version}</version>
52 </dependency>
53 <dependency>
54 <groupId>geniusweb.exampleparties.anac2019</groupId>
55 <artifactId>agentgg</artifactId>
56 <version>${geniusweb.version}</version>
57 </dependency>
58 <dependency>
59 <groupId>geniusweb.exampleparties</groupId>
60 <artifactId>boulware</artifactId>
61 <version>${geniusweb.version}</version>
62 </dependency>
63 <dependency>
64 <groupId>geniusweb.exampleparties</groupId>
65 <artifactId>simpleboaparty</artifactId>
66 <version>${geniusweb.version}</version>
67 </dependency>
68 <dependency>
69 <groupId>geniusweb</groupId>
70 <artifactId>bidspace</artifactId>
71 <version>${geniusweb.version}</version>
72 </dependency>
73 <dependency>
74 <groupId>nz.ac.waikato.cms.weka</groupId>
75 <artifactId>weka-stable</artifactId>
76 <version>3.8.0</version>
77 </dependency>
78 <dependency>
79 <groupId>geniusweb</groupId>
80 <artifactId>profileconnection</artifactId>
81 <version>${geniusweb.version}</version>
82 </dependency>
83 <dependency>
84 <groupId>geniusweb</groupId>
85 <artifactId>opponentmodel</artifactId>
86 <version>${geniusweb.version}</version>
87 </dependency>
88 <dependency>
89 <groupId>tudelft.utilities</groupId>
90 <artifactId>logging</artifactId>
91 <version>1.0.0</version>
92 </dependency>
93 <dependency>
94 <groupId>tudelft.utilities</groupId>
95 <artifactId>utilities</artifactId>
96 <version>1.1.0</version>
97 </dependency>
98 <!-- the core, which includes Streaming API, shared low-level abstractions (but NOT data-binding) -->
99 <dependency>
100 <groupId>com.fasterxml.jackson.core</groupId>
101 <artifactId>jackson-core</artifactId>
102 <version>${jackson-2-version}</version>
103 <scope>test</scope>
104 </dependency>
105 <!-- Just the annotations; use this dependency if you want to attach annotations to classes without connecting them to the code. -->
106 <dependency>
107 <groupId>com.fasterxml.jackson.core</groupId>
108 <artifactId>jackson-annotations</artifactId>
109 <version>${jackson-2-version}</version>
110 <scope>test</scope>
111 </dependency>
112 <!-- databinding; ObjectMapper, JsonNode and related classes are here -->
113 <dependency>
114 <groupId>com.fasterxml.jackson.core</groupId>
115 <artifactId>jackson-databind</artifactId>
116 <version>${jackson-2-version}</version>
117 <scope>test</scope>
118 </dependency>
119 <!-- smile (binary JSON). Other artifacts in this group do other formats. -->
120 <dependency>
121 <groupId>com.fasterxml.jackson.dataformat</groupId>
122 <artifactId>jackson-dataformat-smile</artifactId>
123 <version>${jackson-2-version}</version>
124 <scope>test</scope>
125 </dependency>
126 <!-- JAX-RS provider -->
127 <dependency>
128 <groupId>com.fasterxml.jackson.jaxrs</groupId>
129 <artifactId>jackson-jaxrs-json-provider</artifactId>
130 <version>${jackson-2-version}</version>
131 <scope>test</scope>
132 </dependency>
133 <!-- Support for JAX-B annotations as additional configuration -->
134 <dependency>
135 <groupId>com.fasterxml.jackson.module</groupId>
136 <artifactId>jackson-module-jaxb-annotations</artifactId>
137 <version>${jackson-2-version}</version>
138 <scope>test</scope>
139 </dependency>
140 <dependency>
141 <groupId>junit</groupId>
142 <artifactId>junit</artifactId>
143 <version>4.12</version>
144 <scope>test</scope>
145 </dependency>
146 <dependency>
147 <groupId>org.mockito</groupId>
148 <artifactId>mockito-all</artifactId>
149 <version>1.9.5</version>
150 <scope>test</scope>
151 </dependency>
152 <dependency>
153 <groupId>tudelft.utilities</groupId>
154 <artifactId>junit</artifactId>
155 <version>1.0.1</version>
156 <scope>test</scope>
157 </dependency>
158 </dependencies>
159 <repositories>
160 <repository>
161 <id>artifactory.ewi.tudelft.nl</id>
162 <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
163 <snapshots>
164 <enabled>false</enabled>
165 </snapshots>
166 </repository>
167 </repositories>
168 <pluginRepositories>
169 <pluginRepository>
170 <id>jcenter</id>
171 <url>https://jcenter.bintray.com</url>
172 </pluginRepository>
173 </pluginRepositories>
174 <build>
175 <plugins>
176 <plugin>
177 <groupId>org.apache.maven.plugins</groupId>
178 <artifactId>maven-compiler-plugin</artifactId>
179 <version>3.8.0</version>
180 <configuration>
181 <source>1.8</source>
182 <target>1.8</target>
183 </configuration>
184 </plugin>
185 <plugin>
186 <groupId>org.apache.maven.plugins</groupId>
187 <artifactId>maven-source-plugin</artifactId>
188 <version>3.1.0</version>
189 <executions>
190 <execution>
191 <id>attach-sources</id>
192 <goals>
193 <goal>jar</goal>
194 </goals>
195 </execution>
196 </executions>
197 </plugin>
198 <plugin>
199 <groupId>org.apache.maven.plugins</groupId>
200 <artifactId>maven-jar-plugin</artifactId>
201 <version>3.2.0</version>
202 <configuration>
203 <archive>
204 <manifest>
205 <mainClass>${main-class-path}</mainClass>
206 </manifest>
207 </archive>
208 </configuration>
209 </plugin>
210 <plugin>
211 <groupId>org.apache.maven.plugins</groupId>
212 <artifactId>maven-assembly-plugin</artifactId>
213 <version>2.4.1</version>
214 <configuration>
215 <!-- get all project dependencies -->
216 <descriptorRefs>
217 <descriptorRef>jar-with-dependencies</descriptorRef>
218 </descriptorRefs>
219 <archive>
220 <manifest>
221 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
222 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
223 <mainClass>${main-class-path}</mainClass>
224 </manifest>
225 </archive>
226 </configuration>
227 <executions>
228 <execution>
229 <id>make-assembly</id>
230 <!-- bind to the packaging phase -->
231 <phase>package</phase>
232 <goals>
233 <goal>single</goal>
234 </goals>
235 </execution>
236 </executions>
237 </plugin>
238 </plugins>
239 <pluginManagement>
240 <plugins>
241 <plugin>
242 <groupId>org.eclipse.m2e</groupId>
243 <artifactId>lifecycle-mapping</artifactId>
244 <version>1.0.0</version>
245 <configuration>
246 <lifecycleMappingMetadata>
247 <pluginExecutions>
248 <pluginExecution>
249 <pluginExecutionFilter>
250 <groupId>org.jfrog.buildinfo</groupId>
251 <artifactId>artifactory-maven-plugin</artifactId>
252 <versionRange>[1.5.2,)</versionRange>
253 <goals>
254 <goal>publish</goal>
255 </goals>
256 </pluginExecutionFilter>
257 <action>
258 <ignore/>
259 </action>
260 </pluginExecution>
261 </pluginExecutions>
262 </lifecycleMappingMetadata>
263 </configuration>
264 </plugin>
265 </plugins>
266 </pluginManagement>
267 </build>
268</project>
Note: See TracBrowser for help on using the repository browser.