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