source: exampleparties/anac2019/winkyagent/pom.xml@ 13

Last change on this file since 13 was 13, checked in by bart, 4 years ago

All refs to bintray now use https

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