source: exampleparties/randompartypy/pom.xml@ 6

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

Fix pom source-plugin version nr

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.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 <version>3.1.0</version>
154 <executions>
155 <execution>
156 <id>attach-sources</id>
157 <goals>
158 <goal>jar</goal>
159 </goals>
160 </execution>
161 </executions>
162 </plugin>
163
164 <plugin>
165 <groupId>org.apache.maven.plugins</groupId>
166 <artifactId>maven-javadoc-plugin</artifactId>
167 <version>2.10.1</version>
168 <executions>
169 <execution>
170 <id>attach-javadocs</id>
171 <goals>
172 <goal>jar</goal>
173 </goals>
174 <configuration>
175 <additionalparam>${javadoc.opts}</additionalparam>
176 <additionalparam>-Xdoclint:none</additionalparam>
177 </configuration>
178 </execution>
179 </executions>
180 </plugin>
181
182 <plugin>
183 <groupId>org.jfrog.buildinfo</groupId>
184 <artifactId>artifactory-maven-plugin</artifactId>
185 <version>2.6.1</version>
186 <executions>
187 <execution>
188 <id>build-info</id>
189 <goals>
190 <goal>publish</goal>
191 </goals>
192 <configuration>
193 <publisher>
194 <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
195 <repoKey>libs-release</repoKey>
196 <username>wouter</username>
197 <password>${passwd}</password>
198 </publisher>
199 </configuration>
200 </execution>
201 </executions>
202 </plugin>
203
204 <plugin>
205 <groupId>org.apache.maven.plugins</groupId>
206 <artifactId>maven-assembly-plugin</artifactId>
207 <version>2.4.1</version>
208 <configuration>
209 <!-- get all project dependencies -->
210 <descriptorRefs>
211 <descriptorRef>jar-with-dependencies</descriptorRef>
212 </descriptorRefs>
213 <archive>
214 <manifest>
215 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
216 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
217 <mainClass>geniusweb.exampleparties.randompartypy.PartyAdapter</mainClass>
218 </manifest>
219 </archive>
220 </configuration>
221 <executions>
222 <execution>
223 <id>make-assembly</id>
224 <!-- bind to the packaging phase -->
225 <phase>package</phase>
226 <goals>
227 <goal>single</goal>
228 </goals>
229 </execution>
230 </executions>
231 </plugin>
232
233
234 </plugins>
235
236 <pluginManagement>
237 <plugins>
238 <plugin>
239 <groupId>org.eclipse.m2e</groupId>
240 <artifactId>lifecycle-mapping</artifactId>
241 <version>1.0.0</version>
242 <configuration>
243 <lifecycleMappingMetadata>
244 <pluginExecutions>
245 <pluginExecution>
246 <pluginExecutionFilter>
247 <groupId>org.jfrog.buildinfo</groupId>
248 <artifactId>artifactory-maven-plugin</artifactId>
249 <versionRange>[1.0.0,)</versionRange>
250 <goals>
251 <goal>publish</goal>
252 </goals>
253 </pluginExecutionFilter>
254 <action>
255 <ignore />
256 </action>
257 </pluginExecution>
258 </pluginExecutions>
259 </lifecycleMappingMetadata>
260 </configuration>
261 </plugin>
262 </plugins>
263 </pluginManagement>
264
265
266 </build>
267</project>
Note: See TracBrowser for help on using the repository browser.