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