source: ai2020/group5/pom.xml@ 13

Last change on this file since 13 was 6, checked in by wouter, 3 years ago

#1925 fixing project structures , poms, etc

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