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