source: events/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: 6.7 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>events</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 <repositories>
29 <repository>
30 <id>artifactory.ewi.tudelft.nl</id>
31 <url>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
32 <snapshots>
33 <enabled>false</enabled>
34 </snapshots>
35 </repository>
36
37 </repositories>
38
39
40 <dependencies>
41
42 <dependency>
43 <groupId>geniusweb</groupId>
44 <artifactId>issuevalue</artifactId>
45 <version>1.0.0</version>
46 </dependency>
47 <dependency>
48 <groupId>geniusweb</groupId>
49 <artifactId>references</artifactId>
50 <version>1.0.0</version>
51 </dependency>
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 </dependency>
60
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 </dependency>
68
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 </dependency>
75
76 <!-- smile (binary JSON). Other artifacts in this group do other formats. -->
77 <dependency>
78 <groupId>com.fasterxml.jackson.dataformat</groupId>
79 <artifactId>jackson-dataformat-smile</artifactId>
80 <version>${jackson-2-version}</version>
81 </dependency>
82 <!-- JAX-RS provider -->
83 <dependency>
84 <groupId>com.fasterxml.jackson.jaxrs</groupId>
85 <artifactId>jackson-jaxrs-json-provider</artifactId>
86 <version>${jackson-2-version}</version>
87 </dependency>
88 <!-- Support for JAX-B annotations as additional configuration -->
89 <dependency>
90 <groupId>com.fasterxml.jackson.module</groupId>
91 <artifactId>jackson-module-jaxb-annotations</artifactId>
92 <version>${jackson-2-version}</version>
93 </dependency>
94 <dependency>
95 <groupId>junit</groupId>
96 <artifactId>junit</artifactId>
97 <version>4.12</version>
98 <scope>test</scope>
99 </dependency>
100 <dependency>
101 <groupId>org.mockito</groupId>
102 <artifactId>mockito-all</artifactId>
103 <version>1.9.5</version>
104 <scope>test</scope>
105 </dependency>
106
107 <dependency>
108 <groupId>tudelft.utilities</groupId>
109 <artifactId>junit</artifactId>
110 <version>1.0.2</version>
111 <scope>test</scope>
112 </dependency>
113
114 </dependencies>
115
116
117 <pluginRepositories>
118 <pluginRepository>
119 <id>jcenter</id>
120 <url>http://jcenter.bintray.com</url>
121 </pluginRepository>
122 </pluginRepositories>
123
124
125 <build>
126
127 <plugins>
128 <plugin>
129 <groupId>org.apache.maven.plugins</groupId>
130 <artifactId>maven-compiler-plugin</artifactId>
131 <version>3.8.0</version>
132 <configuration>
133 <source>1.8</source>
134 <target>1.8</target>
135 </configuration>
136 </plugin>
137 <plugin>
138 <groupId>org.apache.maven.plugins</groupId>
139 <artifactId>maven-source-plugin</artifactId>
140 <version>3.1.0</version>
141 <executions>
142 <execution>
143 <id>attach-sources</id>
144 <goals>
145 <goal>jar</goal>
146 </goals>
147 </execution>
148 </executions>
149 </plugin>
150
151 <plugin>
152 <groupId>org.apache.maven.plugins</groupId>
153 <artifactId>maven-javadoc-plugin</artifactId>
154 <version>2.10.1</version>
155 <executions>
156 <execution>
157 <id>attach-javadocs</id>
158 <goals>
159 <goal>jar</goal>
160 </goals>
161 <configuration>
162 <additionalparam>${javadoc.opts}</additionalparam>
163 <additionalparam>-Xdoclint:none</additionalparam>
164 </configuration>
165 </execution>
166 </executions>
167 </plugin>
168
169 <plugin>
170 <groupId>org.jfrog.buildinfo</groupId>
171 <artifactId>artifactory-maven-plugin</artifactId>
172 <version>2.6.1</version>
173 <executions>
174 <execution>
175 <id>build-info</id>
176 <goals>
177 <goal>publish</goal>
178 </goals>
179 <configuration>
180 <publisher>
181 <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
182 <repoKey>libs-release</repoKey>
183 <username>wouter</username>
184 <password>${passwd}</password>
185 </publisher>
186 </configuration>
187 </execution>
188 </executions>
189 </plugin>
190
191 <plugin>
192 <groupId>org.apache.maven.plugins</groupId>
193 <artifactId>maven-assembly-plugin</artifactId>
194 <version>2.4.1</version>
195 <configuration>
196 <!-- get all project dependencies -->
197 <descriptorRefs>
198 <descriptorRef>jar-with-dependencies</descriptorRef>
199 </descriptorRefs>
200 <archive>
201 <manifest>
202 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
203 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
204 </manifest>
205 </archive>
206 </configuration>
207 <executions>
208 <execution>
209 <id>make-assembly</id>
210 <!-- bind to the packaging phase -->
211 <phase>package</phase>
212 <goals>
213 <goal>single</goal>
214 </goals>
215 </execution>
216 </executions>
217 </plugin>
218
219
220 </plugins>
221
222 <pluginManagement>
223 <plugins>
224 <plugin>
225 <groupId>org.eclipse.m2e</groupId>
226 <artifactId>lifecycle-mapping</artifactId>
227 <version>1.0.0</version>
228 <configuration>
229 <lifecycleMappingMetadata>
230 <pluginExecutions>
231 <pluginExecution>
232 <pluginExecutionFilter>
233 <groupId>org.jfrog.buildinfo</groupId>
234 <artifactId>artifactory-maven-plugin</artifactId>
235 <versionRange>[1.0.0,)</versionRange>
236 <goals>
237 <goal>publish</goal>
238 </goals>
239 </pluginExecutionFilter>
240 <action>
241 <ignore />
242 </action>
243 </pluginExecution>
244 </pluginExecutions>
245 </lifecycleMappingMetadata>
246 </configuration>
247 </plugin>
248 </plugins>
249 </pluginManagement>
250
251
252 </build>
253
254</project>
Note: See TracBrowser for help on using the repository browser.