source: party/pom.xml@ 7

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