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