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