1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
---|
2 | <modelVersion>4.0.0</modelVersion>
|
---|
3 | <groupId>ANGELparty</groupId>
|
---|
4 | <artifactId>ANGELparty</artifactId>
|
---|
5 | <version>2.0.4</version>
|
---|
6 |
|
---|
7 | <properties>
|
---|
8 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
---|
9 | <maven.compiler.target>1.8</maven.compiler.target>
|
---|
10 | <maven.compiler.source>1.8</maven.compiler.source>
|
---|
11 | <basedir>.</basedir>
|
---|
12 | <passwd>${env.ARTIFACTORY_PASS}</passwd>
|
---|
13 | <jackson-2-version>2.9.6</jackson-2-version>
|
---|
14 | <geniusweb.version>2.0.4</geniusweb.version>
|
---|
15 | </properties>
|
---|
16 |
|
---|
17 | <distributionManagement>
|
---|
18 | <repository>
|
---|
19 | <id>https://artifactory.ewi.tudelft.nl</id>
|
---|
20 | <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
|
---|
21 | </repository>
|
---|
22 | </distributionManagement>
|
---|
23 |
|
---|
24 |
|
---|
25 | <dependencies>
|
---|
26 |
|
---|
27 | <dependency>
|
---|
28 | <groupId>geniusweb</groupId>
|
---|
29 | <artifactId>party</artifactId>
|
---|
30 | <version>${geniusweb.version}</version>
|
---|
31 | </dependency>
|
---|
32 |
|
---|
33 | <dependency>
|
---|
34 | <groupId>geniusweb</groupId>
|
---|
35 | <artifactId>bidspace</artifactId>
|
---|
36 | <version>${geniusweb.version}</version>
|
---|
37 | </dependency>
|
---|
38 | <dependency>
|
---|
39 | <groupId>geniusweb</groupId>
|
---|
40 | <artifactId>profileconnection</artifactId>
|
---|
41 | <version>${geniusweb.version}</version>
|
---|
42 | </dependency>
|
---|
43 | <dependency>
|
---|
44 | <groupId>tudelft.utilities</groupId>
|
---|
45 | <artifactId>logging</artifactId>
|
---|
46 | <version>1.0.0</version>
|
---|
47 | </dependency>
|
---|
48 | <dependency>
|
---|
49 | <groupId>tudelft.utilities</groupId>
|
---|
50 | <artifactId>utilities</artifactId>
|
---|
51 | <version>1.1.1</version>
|
---|
52 | </dependency>
|
---|
53 |
|
---|
54 | <!-- the core, which includes Streaming API, shared low-level abstractions
|
---|
55 | (but NOT data-binding) -->
|
---|
56 | <dependency>
|
---|
57 | <groupId>com.fasterxml.jackson.core</groupId>
|
---|
58 | <artifactId>jackson-core</artifactId>
|
---|
59 | <version>${jackson-2-version}</version>
|
---|
60 | <scope>test</scope>
|
---|
61 | </dependency>
|
---|
62 |
|
---|
63 | <!-- Just the annotations; use this dependency if you want to attach annotations
|
---|
64 | to classes without connecting them to the code. -->
|
---|
65 | <dependency>
|
---|
66 | <groupId>com.fasterxml.jackson.core</groupId>
|
---|
67 | <artifactId>jackson-annotations</artifactId>
|
---|
68 | <version>${jackson-2-version}</version>
|
---|
69 | <scope>test</scope>
|
---|
70 | </dependency>
|
---|
71 |
|
---|
72 | <!-- databinding; ObjectMapper, JsonNode and related classes are here -->
|
---|
73 | <dependency>
|
---|
74 | <groupId>com.fasterxml.jackson.core</groupId>
|
---|
75 | <artifactId>jackson-databind</artifactId>
|
---|
76 | <version>${jackson-2-version}</version>
|
---|
77 | <scope>test</scope>
|
---|
78 | </dependency>
|
---|
79 |
|
---|
80 | <!-- smile (binary JSON). Other artifacts in this group do other formats. -->
|
---|
81 | <dependency>
|
---|
82 | <groupId>com.fasterxml.jackson.dataformat</groupId>
|
---|
83 | <artifactId>jackson-dataformat-smile</artifactId>
|
---|
84 | <version>${jackson-2-version}</version>
|
---|
85 | <scope>test</scope>
|
---|
86 | </dependency>
|
---|
87 | <!-- JAX-RS provider -->
|
---|
88 | <dependency>
|
---|
89 | <groupId>com.fasterxml.jackson.jaxrs</groupId>
|
---|
90 | <artifactId>jackson-jaxrs-json-provider</artifactId>
|
---|
91 | <version>${jackson-2-version}</version>
|
---|
92 | <scope>test</scope>
|
---|
93 | </dependency>
|
---|
94 | <!-- Support for JAX-B annotations as additional configuration -->
|
---|
95 | <dependency>
|
---|
96 | <groupId>com.fasterxml.jackson.module</groupId>
|
---|
97 | <artifactId>jackson-module-jaxb-annotations</artifactId>
|
---|
98 | <version>${jackson-2-version}</version>
|
---|
99 | <scope>test</scope>
|
---|
100 | </dependency>
|
---|
101 | <dependency>
|
---|
102 | <groupId>junit</groupId>
|
---|
103 | <artifactId>junit</artifactId>
|
---|
104 | <version>4.12</version>
|
---|
105 | <scope>test</scope>
|
---|
106 | </dependency>
|
---|
107 | <dependency>
|
---|
108 | <groupId>org.mockito</groupId>
|
---|
109 | <artifactId>mockito-all</artifactId>
|
---|
110 | <version>1.9.5</version>
|
---|
111 | <scope>test</scope>
|
---|
112 | </dependency>
|
---|
113 | <dependency>
|
---|
114 | <groupId>tudelft.utilities</groupId>
|
---|
115 | <artifactId>junit</artifactId>
|
---|
116 | <version>1.0.1</version>
|
---|
117 | <scope>test</scope>
|
---|
118 | </dependency>
|
---|
119 |
|
---|
120 | </dependencies>
|
---|
121 |
|
---|
122 |
|
---|
123 | <repositories>
|
---|
124 | <repository>
|
---|
125 | <id>artifactory.ewi.tudelft.nl</id>
|
---|
126 | <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
|
---|
127 | <snapshots>
|
---|
128 | <enabled>false</enabled>
|
---|
129 | </snapshots>
|
---|
130 | </repository>
|
---|
131 |
|
---|
132 | </repositories>
|
---|
133 |
|
---|
134 | <pluginRepositories>
|
---|
135 | <pluginRepository>
|
---|
136 | <id>jcenter</id>
|
---|
137 | <url>https://jcenter.bintray.com</url>
|
---|
138 | </pluginRepository>
|
---|
139 | </pluginRepositories>
|
---|
140 |
|
---|
141 | <build>
|
---|
142 | <plugins>
|
---|
143 |
|
---|
144 |
|
---|
145 | <plugin>
|
---|
146 | <groupId>org.apache.maven.plugins</groupId>
|
---|
147 | <artifactId>maven-source-plugin</artifactId>
|
---|
148 | <version>3.1.0</version>
|
---|
149 | <executions>
|
---|
150 | <execution>
|
---|
151 | <id>attach-sources</id>
|
---|
152 | <goals>
|
---|
153 | <goal>jar</goal>
|
---|
154 | </goals>
|
---|
155 | </execution>
|
---|
156 | </executions>
|
---|
157 | </plugin>
|
---|
158 |
|
---|
159 | <plugin>
|
---|
160 | <groupId>org.apache.maven.plugins</groupId>
|
---|
161 | <artifactId>maven-jar-plugin</artifactId>
|
---|
162 | <version>3.2.0</version>
|
---|
163 | <configuration>
|
---|
164 | <archive>
|
---|
165 | <manifest>
|
---|
166 | <mainClass>geniusweb.exampleparties.simpleshaop.AngelParty</mainClass>
|
---|
167 | </manifest>
|
---|
168 | </archive>
|
---|
169 | </configuration>
|
---|
170 | </plugin>
|
---|
171 |
|
---|
172 |
|
---|
173 |
|
---|
174 | <plugin>
|
---|
175 | <groupId>org.jfrog.buildinfo</groupId>
|
---|
176 | <artifactId>artifactory-maven-plugin</artifactId>
|
---|
177 | <version>2.6.1</version>
|
---|
178 | <executions>
|
---|
179 | <execution>
|
---|
180 | <id>build-info</id>
|
---|
181 | <goals>
|
---|
182 | <goal>publish</goal>
|
---|
183 | </goals>
|
---|
184 | <configuration>
|
---|
185 | <publisher>
|
---|
186 | <contextUrl>https://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 | <mainClass>geniusweb.exampleparties.simpleshaop.AngelParty</mainClass>
|
---|
210 | </manifest>
|
---|
211 | </archive>
|
---|
212 | </configuration>
|
---|
213 | <executions>
|
---|
214 | <execution>
|
---|
215 | <id>make-assembly</id>
|
---|
216 | <!-- bind to the packaging phase -->
|
---|
217 | <phase>package</phase>
|
---|
218 | <goals>
|
---|
219 | <goal>single</goal>
|
---|
220 | </goals>
|
---|
221 | </execution>
|
---|
222 | </executions>
|
---|
223 | </plugin>
|
---|
224 |
|
---|
225 |
|
---|
226 | </plugins>
|
---|
227 |
|
---|
228 | <pluginManagement>
|
---|
229 | <plugins>
|
---|
230 | <plugin>
|
---|
231 | <groupId>org.eclipse.m2e</groupId>
|
---|
232 | <artifactId>lifecycle-mapping</artifactId>
|
---|
233 | <version>1.0.0</version>
|
---|
234 | <configuration>
|
---|
235 | <lifecycleMappingMetadata>
|
---|
236 | <pluginExecutions>
|
---|
237 | <pluginExecution>
|
---|
238 | <pluginExecutionFilter>
|
---|
239 | <groupId>org.jfrog.buildinfo</groupId>
|
---|
240 | <artifactId>artifactory-maven-plugin</artifactId>
|
---|
241 | <versionRange>[1.0.0,)</versionRange>
|
---|
242 | <goals>
|
---|
243 | <goal>publish</goal>
|
---|
244 | </goals>
|
---|
245 | </pluginExecutionFilter>
|
---|
246 | <action>
|
---|
247 | <ignore />
|
---|
248 | </action>
|
---|
249 | </pluginExecution>
|
---|
250 | </pluginExecutions>
|
---|
251 | </lifecycleMappingMetadata>
|
---|
252 | </configuration>
|
---|
253 | </plugin>
|
---|
254 | </plugins>
|
---|
255 | </pluginManagement>
|
---|
256 |
|
---|
257 |
|
---|
258 | </build>
|
---|
259 |
|
---|
260 | </project> |
---|