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