source: exampleparties/anac2019/agentgg/pom.xml@ 31

Last change on this file since 31 was 31, checked in by bart, 3 years ago

New protocols Learn and APPLearn. Fixed memory leak.

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