source: domaineditor/pom.xml@ 52

Last change on this file since 52 was 52, checked in by ruud, 14 months ago

Fixed small issues in domaineditor.

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