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