source: anac2020/agentP1DAMO/pom.xml@ 77

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