source: exampleparties/comparebids/pom.xml@ 32

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

Multiple learns with repeated tournament, maven use https.

File size: 7.7 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</groupId>
7 <artifactId>comparebids</artifactId>
8 <version>1.6.1</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>1.6.1</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.1</version>
53 </dependency>
54 <dependency>
55 <groupId>tudelft.utilities</groupId>
56 <artifactId>immutablelist</artifactId>
57 <version>1.1.2</version>
58 </dependency>
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.5</version>
123 <scope>test</scope>
124 </dependency>
125
126 </dependencies>
127
128
129 <repositories>
130 <repository>
131 <id>artifactory.ewi.tudelft.nl</id>
132 <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
133 <snapshots>
134 <enabled>false</enabled>
135 </snapshots>
136 </repository>
137 </repositories>
138
139 <pluginRepositories>
140 <pluginRepository>
141 <id>central</id>
142 <url>https://repo1.maven.org/</url>
143 </pluginRepository>
144 <pluginRepository>
145 <id>jfrog-plugins-release</id>
146 <name>plugins-release</name>
147 <url>https://oss.jfrog.org/artifactory/plugins-release</url>
148 </pluginRepository>
149 </pluginRepositories>
150
151
152
153 <build>
154
155 <plugins>
156 <plugin>
157 <groupId>org.apache.maven.plugins</groupId>
158 <artifactId>maven-compiler-plugin</artifactId>
159 <version>3.8.0</version>
160 <configuration>
161 <source>1.8</source>
162 <target>1.8</target>
163 </configuration>
164 </plugin>
165 <plugin>
166 <groupId>org.apache.maven.plugins</groupId>
167 <artifactId>maven-source-plugin</artifactId>
168 <version>3.1.0</version>
169 <executions>
170 <execution>
171 <id>attach-sources</id>
172 <goals>
173 <goal>jar</goal>
174 </goals>
175 </execution>
176 </executions>
177 </plugin>
178
179 <plugin>
180 <groupId>org.apache.maven.plugins</groupId>
181 <artifactId>maven-jar-plugin</artifactId>
182 <version>3.2.0</version>
183 <configuration>
184 <archive>
185 <manifest>
186 <mainClass>geniusweb.exampleparties.comparebids.CompareBids</mainClass>
187 </manifest>
188 </archive>
189 </configuration>
190 </plugin>
191
192 <plugin>
193 <groupId>org.apache.maven.plugins</groupId>
194 <artifactId>maven-javadoc-plugin</artifactId>
195 <version>2.10.1</version>
196 <executions>
197 <execution>
198 <id>attach-javadocs</id>
199 <goals>
200 <goal>jar</goal>
201 </goals>
202 </execution>
203 </executions>
204 </plugin>
205
206 <plugin>
207 <groupId>org.jfrog.buildinfo</groupId>
208 <artifactId>artifactory-maven-plugin</artifactId>
209 <version>2.6.1</version>
210 <executions>
211 <execution>
212 <id>build-info</id>
213 <goals>
214 <goal>publish</goal>
215 </goals>
216 <configuration>
217 <publisher>
218 <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
219 <repoKey>libs-release</repoKey>
220 <username>wouter</username>
221 <password>${passwd}</password>
222 </publisher>
223 </configuration>
224 </execution>
225 </executions>
226 </plugin>
227
228 <plugin>
229 <groupId>org.apache.maven.plugins</groupId>
230 <artifactId>maven-assembly-plugin</artifactId>
231 <version>2.4.1</version>
232 <configuration>
233 <!-- get all project dependencies -->
234 <descriptorRefs>
235 <descriptorRef>jar-with-dependencies</descriptorRef>
236 </descriptorRefs>
237 <archive>
238 <manifest>
239 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
240 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
241 <mainClass>geniusweb.exampleparties.comparebids.CompareBids</mainClass>
242 </manifest>
243 </archive>
244 </configuration>
245 <executions>
246 <execution>
247 <id>make-assembly</id>
248 <!-- bind to the packaging phase -->
249 <phase>package</phase>
250 <goals>
251 <goal>single</goal>
252 </goals>
253 </execution>
254 </executions>
255 </plugin>
256
257
258 </plugins>
259
260 <pluginManagement>
261 <plugins>
262 <plugin>
263 <groupId>org.eclipse.m2e</groupId>
264 <artifactId>lifecycle-mapping</artifactId>
265 <version>1.0.0</version>
266 <configuration>
267 <lifecycleMappingMetadata>
268 <pluginExecutions>
269 <pluginExecution>
270 <pluginExecutionFilter>
271 <groupId>org.jfrog.buildinfo</groupId>
272 <artifactId>artifactory-maven-plugin</artifactId>
273 <versionRange>[1.0.0,)</versionRange>
274 <goals>
275 <goal>publish</goal>
276 </goals>
277 </pluginExecutionFilter>
278 <action>
279 <ignore />
280 </action>
281 </pluginExecution>
282 </pluginExecutions>
283 </lifecycleMappingMetadata>
284 </configuration>
285 </plugin>
286 </plugins>
287 </pluginManagement>
288
289
290 </build>
291</project>
Note: See TracBrowser for help on using the repository browser.