source: exampleparties/randompartypy/pom.xml@ 18

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

Update to version 1.41

File size: 7.3 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.4.1</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.1</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
30 <dependencies>
31 <dependency>
32 <groupId>geniusweb</groupId>
33 <artifactId>pythonadapter</artifactId>
34 <version>${geniusweb.version}</version>
35 </dependency>
36
37 <dependency>
38 <groupId>geniusweb</groupId>
39 <artifactId>bidspace</artifactId>
40 <version>${geniusweb.version}</version>
41 </dependency>
42 <dependency>
43 <groupId>geniusweb</groupId>
44 <artifactId>profileconnection</artifactId>
45 <version>${geniusweb.version}</version>
46 </dependency>
47 <dependency>
48 <groupId>tudelft.utilities</groupId>
49 <artifactId>immutablelist</artifactId>
50 <version>1.1.0</version>
51 </dependency>
52
53
54 <!-- the core, which includes Streaming API, shared low-level abstractions
55 (but NOT data-binding) -->
56 <dependency>
57 <groupId>com.fasterxml.jackson.core</groupId>
58 <artifactId>jackson-core</artifactId>
59 <version>${jackson-2-version}</version>
60 <scope>test</scope>
61 </dependency>
62 <!-- Just the annotations; use this dependency if you want to attach annotations
63 to classes without connecting them to the code. -->
64 <dependency>
65 <groupId>com.fasterxml.jackson.core</groupId>
66 <artifactId>jackson-annotations</artifactId>
67 <version>${jackson-2-version}</version>
68 <scope>test</scope>
69 </dependency>
70 <!-- databinding; ObjectMapper, JsonNode and related classes are here -->
71 <dependency>
72 <groupId>com.fasterxml.jackson.core</groupId>
73 <artifactId>jackson-databind</artifactId>
74 <version>${jackson-2-version}</version>
75 <scope>test</scope>
76 </dependency>
77
78 <!-- smile (binary JSON). Other artifacts in this group do other formats. -->
79 <dependency>
80 <groupId>com.fasterxml.jackson.dataformat</groupId>
81 <artifactId>jackson-dataformat-smile</artifactId>
82 <version>${jackson-2-version}</version>
83 <scope>test</scope>
84 </dependency>
85 <!-- JAX-RS provider -->
86 <dependency>
87 <groupId>com.fasterxml.jackson.jaxrs</groupId>
88 <artifactId>jackson-jaxrs-json-provider</artifactId>
89 <version>${jackson-2-version}</version>
90 <scope>test</scope>
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 <scope>test</scope>
98 </dependency>
99 <dependency>
100 <groupId>junit</groupId>
101 <artifactId>junit</artifactId>
102 <version>4.12</version>
103 <scope>test</scope>
104 </dependency>
105 <dependency>
106 <groupId>org.mockito</groupId>
107 <artifactId>mockito-all</artifactId>
108 <version>1.9.5</version>
109 <scope>test</scope>
110 </dependency>
111 <dependency>
112 <groupId>tudelft.utilities</groupId>
113 <artifactId>junit</artifactId>
114 <version>1.0.1</version>
115 <scope>test</scope>
116 </dependency>
117 </dependencies>
118
119
120 <repositories>
121 <repository>
122 <id>artifactory.ewi.tudelft.nl</id>
123 <url>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
124 <snapshots>
125 <enabled>false</enabled>
126 </snapshots>
127 </repository>
128
129 </repositories>
130
131 <pluginRepositories>
132 <pluginRepository>
133 <id>jcenter</id>
134 <url>https://jcenter.bintray.com</url>
135 </pluginRepository>
136 </pluginRepositories>
137
138
139 <build>
140
141 <plugins>
142 <plugin>
143 <groupId>org.apache.maven.plugins</groupId>
144 <artifactId>maven-compiler-plugin</artifactId>
145 <version>3.8.0</version>
146 <configuration>
147 <source>1.8</source>
148 <target>1.8</target>
149 </configuration>
150 </plugin>
151 <plugin>
152 <groupId>org.apache.maven.plugins</groupId>
153 <artifactId>maven-source-plugin</artifactId>
154 <version>3.1.0</version>
155 <executions>
156 <execution>
157 <id>attach-sources</id>
158 <goals>
159 <goal>jar</goal>
160 </goals>
161 </execution>
162 </executions>
163 </plugin>
164
165 <plugin>
166 <groupId>org.apache.maven.plugins</groupId>
167 <artifactId>maven-javadoc-plugin</artifactId>
168 <version>2.10.1</version>
169 <executions>
170 <execution>
171 <id>attach-javadocs</id>
172 <goals>
173 <goal>jar</goal>
174 </goals>
175 <configuration>
176 <additionalparam>${javadoc.opts}</additionalparam>
177 <additionalparam>-Xdoclint:none</additionalparam>
178 </configuration>
179 </execution>
180 </executions>
181 </plugin>
182
183 <plugin>
184 <groupId>org.jfrog.buildinfo</groupId>
185 <artifactId>artifactory-maven-plugin</artifactId>
186 <version>2.6.1</version>
187 <executions>
188 <execution>
189 <id>build-info</id>
190 <goals>
191 <goal>publish</goal>
192 </goals>
193 <configuration>
194 <publisher>
195 <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
196 <repoKey>libs-release</repoKey>
197 <username>wouter</username>
198 <password>${passwd}</password>
199 </publisher>
200 </configuration>
201 </execution>
202 </executions>
203 </plugin>
204
205 <plugin>
206 <groupId>org.apache.maven.plugins</groupId>
207 <artifactId>maven-assembly-plugin</artifactId>
208 <version>2.4.1</version>
209 <configuration>
210 <!-- get all project dependencies -->
211 <descriptorRefs>
212 <descriptorRef>jar-with-dependencies</descriptorRef>
213 </descriptorRefs>
214 <archive>
215 <manifest>
216 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
217 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
218 <mainClass>geniusweb.exampleparties.randompartypy.PartyAdapter</mainClass>
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.