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