source: anac2020/agentxx/pom.xml

Last change on this file was 72, checked in by wouter, 2 years ago

#2068 bump to 2.1.3. Taken pompfan out of maintenance as it uses custom NegoRunner

File size: 6.5 KB
Line 
1<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4
5 <groupId>anac2020</groupId>
6 <artifactId>agentxx</artifactId>
7 <version>2.1.3</version>
8 <packaging>jar</packaging>
9
10 <name>agentxx</name>
11 <url>http://maven.apache.org</url>
12
13
14 <properties>
15 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16 <maven.compiler.target>1.8</maven.compiler.target>
17 <maven.compiler.source>1.8</maven.compiler.source>
18 <basedir>.</basedir>
19 <jackson-2-version>2.9.6</jackson-2-version>
20 <geniusweb.version>${project.version}</geniusweb.version>
21 </properties>
22
23 <distributionManagement>
24 <repository>
25 <id>artifactory.ewi.tudelft.nl</id>
26 <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
27 </repository>
28 </distributionManagement>
29
30
31 <dependencies>
32
33
34 <dependency>
35 <groupId>geniusweb</groupId>
36 <artifactId>party</artifactId>
37 <version>${geniusweb.version}</version>
38 </dependency>
39
40 <dependency>
41 <groupId>geniusweb</groupId>
42 <artifactId>bidspace</artifactId>
43 <version>${geniusweb.version}</version>
44 </dependency>
45 <dependency>
46 <groupId>geniusweb</groupId>
47 <artifactId>profileconnection</artifactId>
48 <version>${geniusweb.version}</version>
49 </dependency>
50 <dependency>
51 <groupId>geniusweb.exampleparties.anac2019</groupId>
52 <artifactId>agentgg</artifactId>
53 <version>${geniusweb.version}</version>
54 </dependency>
55 <dependency>
56 <groupId>tudelft.utilities</groupId>
57 <artifactId>logging</artifactId>
58 <version>1.0.0</version>
59 </dependency>
60 <dependency>
61 <groupId>tudelft.utilities</groupId>
62 <artifactId>immutablelist</artifactId>
63 <version>1.1.0</version>
64 </dependency>
65
66 <!-- the core, which includes Streaming API, shared low-level abstractions
67 (but NOT data-binding) -->
68 <dependency>
69 <groupId>com.fasterxml.jackson.core</groupId>
70 <artifactId>jackson-core</artifactId>
71 <version>${jackson-2-version}</version>
72 <scope>test</scope>
73 </dependency>
74
75 <!-- Just the annotations; use this dependency if you want to attach annotations
76 to classes without connecting them to the code. -->
77 <dependency>
78 <groupId>com.fasterxml.jackson.core</groupId>
79 <artifactId>jackson-annotations</artifactId>
80 <version>${jackson-2-version}</version>
81 <scope>test</scope>
82 </dependency>
83
84 <!-- databinding; ObjectMapper, JsonNode and related classes are here -->
85 <dependency>
86 <groupId>com.fasterxml.jackson.core</groupId>
87 <artifactId>jackson-databind</artifactId>
88 <version>${jackson-2-version}</version>
89 <scope>test</scope>
90 </dependency>
91
92 <!-- smile (binary JSON). Other artifacts in this group do other formats. -->
93 <dependency>
94 <groupId>com.fasterxml.jackson.dataformat</groupId>
95 <artifactId>jackson-dataformat-smile</artifactId>
96 <version>${jackson-2-version}</version>
97 <scope>test</scope>
98 </dependency>
99 <!-- JAX-RS provider -->
100 <dependency>
101 <groupId>com.fasterxml.jackson.jaxrs</groupId>
102 <artifactId>jackson-jaxrs-json-provider</artifactId>
103 <version>${jackson-2-version}</version>
104 <scope>test</scope>
105 </dependency>
106 <!-- Support for JAX-B annotations as additional configuration -->
107 <dependency>
108 <groupId>com.fasterxml.jackson.module</groupId>
109 <artifactId>jackson-module-jaxb-annotations</artifactId>
110 <version>${jackson-2-version}</version>
111 <scope>test</scope>
112 </dependency>
113 <dependency>
114 <groupId>junit</groupId>
115 <artifactId>junit</artifactId>
116 <version>4.12</version>
117 <scope>test</scope>
118 </dependency>
119 <dependency>
120 <groupId>org.mockito</groupId>
121 <artifactId>mockito-all</artifactId>
122 <version>1.9.5</version>
123 <scope>test</scope>
124 </dependency>
125 <dependency>
126 <groupId>tudelft.utilities</groupId>
127 <artifactId>junit</artifactId>
128 <version>1.0.1</version>
129 <scope>test</scope>
130 </dependency>
131
132 </dependencies>
133
134
135 <repositories>
136 <repository>
137 <id>artifactory.ewi.tudelft.nl</id>
138 <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
139 <snapshots>
140 <enabled>false</enabled>
141 </snapshots>
142 </repository>
143
144 </repositories>
145
146 <pluginRepositories>
147 <pluginRepository>
148 <id>jcenter</id>
149 <url>https://jcenter.bintray.com</url>
150 </pluginRepository>
151 </pluginRepositories>
152
153
154 <build>
155
156 <plugins>
157 <plugin>
158 <groupId>org.apache.maven.plugins</groupId>
159 <artifactId>maven-compiler-plugin</artifactId>
160 <version>3.8.0</version>
161 <configuration>
162 <source>1.8</source>
163 <target>1.8</target>
164 </configuration>
165 </plugin>
166 <plugin>
167 <groupId>org.apache.maven.plugins</groupId>
168 <artifactId>maven-source-plugin</artifactId>
169 <version>3.1.0</version>
170 <executions>
171 <execution>
172 <id>attach-sources</id>
173 <goals>
174 <goal>jar</goal>
175 </goals>
176 </execution>
177 </executions>
178 </plugin>
179
180 <plugin>
181 <groupId>org.apache.maven.plugins</groupId>
182 <artifactId>maven-jar-plugin</artifactId>
183 <version>3.2.0</version>
184 <configuration>
185 <archive>
186 <manifest>
187 <mainClass>geniusweb.exampleparties.agentxx.AgentXX</mainClass>
188 </manifest>
189 </archive>
190 </configuration>
191 </plugin>
192
193 <plugin>
194 <groupId>org.apache.maven.plugins</groupId>
195 <artifactId>maven-javadoc-plugin</artifactId>
196 <version>2.10.1</version>
197 <executions>
198 <execution>
199 <id>attach-javadocs</id>
200 <goals>
201 <goal>jar</goal>
202 </goals>
203 <configuration>
204 <additionalparam>${javadoc.opts}</additionalparam>
205 <additionalparam>-Xdoclint:none</additionalparam>
206 </configuration>
207 </execution>
208 </executions>
209 </plugin>
210
211
212 <plugin>
213 <groupId>org.apache.maven.plugins</groupId>
214 <artifactId>maven-assembly-plugin</artifactId>
215 <version>2.4.1</version>
216 <configuration>
217 <!-- get all project dependencies -->
218 <descriptorRefs>
219 <descriptorRef>jar-with-dependencies</descriptorRef>
220 </descriptorRefs>
221 <archive>
222 <manifest>
223 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
224 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
225 <mainClass>geniusweb.exampleparties.agentxx.AgentXX</mainClass>
226 </manifest>
227 </archive>
228 </configuration>
229 <executions>
230 <execution>
231 <id>make-assembly</id>
232 <!-- bind to the packaging phase -->
233 <phase>package</phase>
234 <goals>
235 <goal>single</goal>
236 </goals>
237 </execution>
238 </executions>
239 </plugin>
240
241
242 </plugins>
243
244 </build>
245</project>
Note: See TracBrowser for help on using the repository browser.