source: issuevalue/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: 6.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>issuevalue</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
30 <dependencies>
31 <!-- the core, which includes Streaming API, shared low-level abstractions
32 (but NOT data-binding) -->
33 <dependency>
34 <groupId>com.fasterxml.jackson.core</groupId>
35 <artifactId>jackson-core</artifactId>
36 <version>${jackson-2-version}</version>
37 </dependency>
38
39 <!-- Just the annotations; use this dependency if you want to attach annotations
40 to classes without connecting them to the code. -->
41 <dependency>
42 <groupId>com.fasterxml.jackson.core</groupId>
43 <artifactId>jackson-annotations</artifactId>
44 <version>${jackson-2-version}</version>
45 </dependency>
46
47 <!-- databinding; ObjectMapper, JsonNode and related classes are here -->
48 <dependency>
49 <groupId>com.fasterxml.jackson.core</groupId>
50 <artifactId>jackson-databind</artifactId>
51 <version>${jackson-2-version}</version>
52 </dependency>
53
54 <!-- smile (binary JSON). Other artifacts in this group do other formats. -->
55 <dependency>
56 <groupId>com.fasterxml.jackson.dataformat</groupId>
57 <artifactId>jackson-dataformat-smile</artifactId>
58 <version>${jackson-2-version}</version>
59 </dependency>
60 <!-- JAX-RS provider -->
61 <dependency>
62 <groupId>com.fasterxml.jackson.jaxrs</groupId>
63 <artifactId>jackson-jaxrs-json-provider</artifactId>
64 <version>${jackson-2-version}</version>
65 </dependency>
66 <!-- Support for JAX-B annotations as additional configuration -->
67 <dependency>
68 <groupId>com.fasterxml.jackson.module</groupId>
69 <artifactId>jackson-module-jaxb-annotations</artifactId>
70 <version>${jackson-2-version}</version>
71 </dependency>
72 <dependency>
73 <groupId>junit</groupId>
74 <artifactId>junit</artifactId>
75 <version>4.12</version>
76 <scope>test</scope>
77 </dependency>
78 <dependency>
79 <groupId>org.mockito</groupId>
80 <artifactId>mockito-core</artifactId>
81 <version>3.11.2</version>
82 <scope>test</scope>
83 </dependency>
84
85
86 <dependency>
87 <groupId>tudelft.utilities</groupId>
88 <artifactId>junit</artifactId>
89 <version>1.0.5</version>
90 <scope>test</scope>
91 </dependency>
92 <dependency>
93 <groupId>tudelft.utilities</groupId>
94 <artifactId>utilities</artifactId>
95 <version>1.2.1</version>
96 </dependency>
97
98 </dependencies>
99
100
101 <repositories>
102 <repository>
103 <id>artifactory.ewi.tudelft.nl</id>
104 <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
105 <snapshots>
106 <enabled>false</enabled>
107 </snapshots>
108 </repository>
109 </repositories>
110
111 <pluginRepositories>
112 <pluginRepository>
113 <id>central</id>
114 <url>https://repo1.maven.org/maven2</url>
115 </pluginRepository>
116 <pluginRepository>
117 <id>artifactory.ewi.tudelft.nl</id>
118 <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
119 </pluginRepository>
120 </pluginRepositories>
121
122
123 <build>
124
125 <plugins>
126 <plugin>
127 <groupId>org.apache.maven.plugins</groupId>
128 <artifactId>maven-compiler-plugin</artifactId>
129 <version>3.8.0</version>
130 <configuration>
131 <source>1.8</source>
132 <target>1.8</target>
133 </configuration>
134 </plugin>
135
136 <plugin>
137 <groupId>org.apache.maven.plugins</groupId>
138 <artifactId>maven-source-plugin</artifactId>
139 <version>3.1.0</version>
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>3.2.0</version>
154 <executions>
155 <execution>
156 <id>attach-javadocs</id>
157 <goals>
158 <goal>jar</goal>
159 </goals>
160 </execution>
161 </executions>
162 </plugin>
163
164 <plugin>
165 <groupId>org.jfrog.buildinfo</groupId>
166 <artifactId>artifactory-maven-plugin</artifactId>
167 <version>3.2.3</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.