source: opponentmodel/pom.xml@ 20

Last change on this file since 20 was 20, checked in by bart, 4 years ago

Added BOA support, some bug fixes

File size: 7.2 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>opponentmodel</artifactId>
8 <version>1.4.4</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.4.4</geniusweb.version>
20 </properties>
21
22 <distributionManagement>
23 <repository>
24 <id>artifactory.ewi.tudelft.nl</id>
25 <url>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
26 </repository>
27 </distributionManagement>
28
29 <dependencies>
30
31 <dependency>
32 <groupId>geniusweb</groupId>
33 <artifactId>issuevalue</artifactId>
34 <version>${geniusweb.version}</version>
35 </dependency>
36 <dependency>
37 <groupId>geniusweb</groupId>
38 <artifactId>profile</artifactId>
39 <version>${geniusweb.version}</version>
40 </dependency>
41 <dependency>
42 <groupId>geniusweb</groupId>
43 <artifactId>references</artifactId>
44 <version>${geniusweb.version}</version>
45 </dependency>
46 <dependency>
47 <groupId>geniusweb</groupId>
48 <artifactId>events</artifactId>
49 <version>${geniusweb.version}</version>
50 </dependency>
51 <dependency>
52 <groupId>geniusweb</groupId>
53 <artifactId>timeline</artifactId>
54 <version>${geniusweb.version}</version>
55 </dependency>
56
57 <!-- the core, which includes Streaming API, shared low-level abstractions
58 (but NOT data-binding) -->
59 <dependency>
60 <groupId>com.fasterxml.jackson.core</groupId>
61 <artifactId>jackson-core</artifactId>
62 <version>${jackson-2-version}</version>
63 </dependency>
64
65 <!-- Just the annotations; use this dependency if you want to attach annotations
66 to classes without connecting them to the code. -->
67 <dependency>
68 <groupId>com.fasterxml.jackson.core</groupId>
69 <artifactId>jackson-annotations</artifactId>
70 <version>${jackson-2-version}</version>
71 </dependency>
72
73 <!-- databinding; ObjectMapper, JsonNode and related classes are here -->
74 <dependency>
75 <groupId>com.fasterxml.jackson.core</groupId>
76 <artifactId>jackson-databind</artifactId>
77 <version>${jackson-2-version}</version>
78 </dependency>
79
80 <!-- smile (binary JSON). Other artifacts in this group do other formats. -->
81 <dependency>
82 <groupId>com.fasterxml.jackson.dataformat</groupId>
83 <artifactId>jackson-dataformat-smile</artifactId>
84 <version>${jackson-2-version}</version>
85 </dependency>
86 <!-- JAX-RS provider -->
87 <dependency>
88 <groupId>com.fasterxml.jackson.jaxrs</groupId>
89 <artifactId>jackson-jaxrs-json-provider</artifactId>
90 <version>${jackson-2-version}</version>
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 </dependency>
98
99 <dependency>
100 <groupId>tudelft.utilities</groupId>
101 <artifactId>junit</artifactId>
102 <version>1.0.2</version>
103 <scope>test</scope>
104 </dependency>
105 <dependency>
106 <groupId>junit</groupId>
107 <artifactId>junit</artifactId>
108 <version>4.12</version>
109 <scope>test</scope>
110 </dependency>
111 <dependency>
112 <groupId>org.mockito</groupId>
113 <artifactId>mockito-all</artifactId>
114 <version>1.9.5</version>
115 <scope>test</scope>
116 </dependency>
117
118
119 </dependencies>
120
121
122 <repositories>
123 <repository>
124 <id>artifactory.ewi.tudelft.nl</id>
125 <url>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
126 <snapshots>
127 <enabled>false</enabled>
128 </snapshots>
129 </repository>
130
131 </repositories>
132
133 <pluginRepositories>
134 <pluginRepository>
135 <id>jcenter</id>
136 <url>https://jcenter.bintray.com</url>
137 </pluginRepository>
138 </pluginRepositories>
139
140
141 <build>
142
143 <plugins>
144 <plugin>
145 <groupId>org.apache.maven.plugins</groupId>
146 <artifactId>maven-compiler-plugin</artifactId>
147 <version>3.8.0</version>
148 <configuration>
149 <source>1.8</source>
150 <target>1.8</target>
151 </configuration>
152 </plugin>
153 <plugin>
154 <groupId>org.apache.maven.plugins</groupId>
155 <artifactId>maven-source-plugin</artifactId>
156 <executions>
157 <execution>
158 <id>attach-sources</id>
159 <goals>
160 <goal>jar</goal>
161 </goals>
162 </execution>
163 </executions>
164 </plugin>
165
166 <plugin>
167 <groupId>org.apache.maven.plugins</groupId>
168 <artifactId>maven-javadoc-plugin</artifactId>
169 <version>2.10.1</version>
170 <executions>
171 <execution>
172 <id>attach-javadocs</id>
173 <goals>
174 <goal>jar</goal>
175 </goals>
176 <configuration>
177 <additionalparam>${javadoc.opts}</additionalparam>
178 <additionalparam>-Xdoclint:none</additionalparam>
179 </configuration>
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 </manifest>
220 </archive>
221 </configuration>
222 <executions>
223 <execution>
224 <id>make-assembly</id>
225 <!-- bind to the packaging phase -->
226 <phase>package</phase>
227 <goals>
228 <goal>single</goal>
229 </goals>
230 </execution>
231 </executions>
232 </plugin>
233
234
235 </plugins>
236
237 <pluginManagement>
238 <plugins>
239 <plugin>
240 <groupId>org.eclipse.m2e</groupId>
241 <artifactId>lifecycle-mapping</artifactId>
242 <version>1.0.0</version>
243 <configuration>
244 <lifecycleMappingMetadata>
245 <pluginExecutions>
246 <pluginExecution>
247 <pluginExecutionFilter>
248 <groupId>org.jfrog.buildinfo</groupId>
249 <artifactId>artifactory-maven-plugin</artifactId>
250 <versionRange>[1.0.0,)</versionRange>
251 <goals>
252 <goal>publish</goal>
253 </goals>
254 </pluginExecutionFilter>
255 <action>
256 <ignore />
257 </action>
258 </pluginExecution>
259 </pluginExecutions>
260 </lifecycleMappingMetadata>
261 </configuration>
262 </plugin>
263 </plugins>
264 </pluginManagement>
265
266
267 </build>
268</project>
Note: See TracBrowser for help on using the repository browser.