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