source: exampleparties/randompartypy/pom.xml@ 4

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

Faster example parties

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