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