source: anac2021/dicehaggler/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"
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.dicehaggler</groupId>
7 <artifactId>thedicehaggler2021</artifactId>
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>${project.version}</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 <dependencies>
30
31 <dependency>
32 <groupId>geniusweb</groupId>
33 <artifactId>protocol</artifactId>
34 <version>${geniusweb.version}</version>
35 </dependency>
36 <dependency>
37 <groupId>geniusweb</groupId>
38 <artifactId>party</artifactId>
39 <version>${geniusweb.version}</version>
40 </dependency>
41 <dependency>
42 <groupId>geniusweb.exampleparties</groupId>
43 <artifactId>randomparty</artifactId>
44 <version>${geniusweb.version}</version>
45 </dependency>
46 <dependency>
47 <groupId>geniusweb.exampleparties</groupId>
48 <artifactId>comparebids</artifactId>
49 <version>${geniusweb.version}</version>
50 <scope>
51 test
52 </scope>
53 </dependency>
54 <dependency>
55 <groupId>geniusweb.exampleparties</groupId>
56 <artifactId>simpleshaop</artifactId>
57 <version>${geniusweb.version}</version>
58 <scope>
59 test
60 </scope>
61 </dependency>
62
63 <dependency>
64 <groupId>tudelft.utilities</groupId>
65 <artifactId>junit</artifactId>
66 <version>1.0.5</version>
67 <scope>test</scope>
68 </dependency>
69 <dependency>
70 <groupId>junit</groupId>
71 <artifactId>junit</artifactId>
72 <version>4.12</version>
73 <scope>test</scope>
74 </dependency>
75 <dependency>
76 <groupId>org.mockito</groupId>
77 <artifactId>mockito-all</artifactId>
78 <version>1.9.5</version>
79 <scope>test</scope>
80 </dependency>
81 <dependency>
82 <groupId>com.debacharya</groupId>
83 <artifactId>nsgaii</artifactId>
84 <version>3.1.0</version>
85 </dependency>
86 <dependency>
87 <groupId>org.apache.commons</groupId>
88 <artifactId>commons-math3</artifactId>
89 <version>3.6.1</version>
90 </dependency>
91
92 </dependencies>
93
94
95 <repositories>
96 <repository>
97 <id>artifactory.ewi.tudelft.nl</id>
98 <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
99 <snapshots>
100 <enabled>false</enabled>
101 </snapshots>
102 </repository>
103 </repositories>
104
105 <pluginRepositories>
106 <pluginRepository>
107 <id>central</id>
108 <url>https://repo1.maven.org/maven2</url>
109 </pluginRepository>
110 </pluginRepositories>
111
112
113 <build>
114
115 <plugins>
116 <plugin>
117 <groupId>org.apache.maven.plugins</groupId>
118 <artifactId>maven-compiler-plugin</artifactId>
119 <version>3.8.0</version>
120 <configuration>
121 <source>1.8</source>
122 <target>1.8</target>
123 </configuration>
124 </plugin>
125 <plugin>
126 <groupId>org.apache.maven.plugins</groupId>
127 <artifactId>maven-enforcer-plugin</artifactId>
128 <version>3.0.0-M2</version>
129 <executions>
130 <execution>
131 <id>enforce</id>
132 <configuration>
133 <rules>
134 <dependencyConvergence />
135 </rules>
136 </configuration>
137 <goals>
138 <goal>enforce</goal>
139 </goals>
140 </execution>
141 </executions>
142 </plugin>
143 <plugin>
144 <groupId>org.apache.maven.plugins</groupId>
145 <artifactId>maven-javadoc-plugin</artifactId>
146 <configuration>
147 <source>8</source>
148 </configuration>
149 <version>3.2.0</version>
150 <executions>
151 <execution>
152 <id>attach-javadocs</id>
153 <goals>
154 <goal>jar</goal>
155 </goals>
156 </execution>
157 </executions>
158 </plugin>
159
160 <plugin>
161 <groupId>org.apache.maven.plugins</groupId>
162 <artifactId>maven-source-plugin</artifactId>
163 <version>3.1.0</version>
164 <executions>
165 <execution>
166 <id>attach-sources</id>
167 <goals>
168 <goal>jar</goal>
169 </goals>
170 </execution>
171 </executions>
172 </plugin>
173
174 <plugin>
175 <groupId>org.jfrog.buildinfo</groupId>
176 <artifactId>artifactory-maven-plugin</artifactId>
177 <version>3.2.3</version>
178 <executions>
179 <execution>
180 <id>build-info</id>
181 <goals>
182 <goal>publish</goal>
183 </goals>
184 <configuration>
185 <publisher>
186 <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
187 <repoKey>libs-release</repoKey>
188 <username>wouter</username>
189 <password>${passwd}</password>
190 </publisher>
191 </configuration>
192 </execution>
193 </executions>
194 </plugin>
195
196 <plugin>
197 <groupId>org.apache.maven.plugins</groupId>
198 <artifactId>maven-assembly-plugin</artifactId>
199 <version>2.4.1</version>
200 <configuration>
201 <!-- get all project dependencies -->
202 <descriptorRefs>
203 <descriptorRef>jar-with-dependencies</descriptorRef>
204 </descriptorRefs>
205 <archive>
206 <manifest>
207 <mainClass>geniusweb.exampleparties.anac2021.dicehaggler.TheDiceHaggler2021</mainClass>
208 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
209 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
210 </manifest>
211 </archive>
212 </configuration>
213 <executions>
214 <execution>
215 <id>make-assembly</id>
216 <!-- bind to the packaging phase -->
217 <phase>package</phase>
218 <goals>
219 <goal>single</goal>
220 </goals>
221 </execution>
222 </executions>
223 </plugin>
224
225
226 </plugins>
227
228 <pluginManagement>
229 <plugins>
230 <plugin>
231 <groupId>org.eclipse.m2e</groupId>
232 <artifactId>lifecycle-mapping</artifactId>
233 <version>1.0.0</version>
234 <configuration>
235 <lifecycleMappingMetadata>
236 <pluginExecutions>
237 <pluginExecution>
238 <pluginExecutionFilter>
239 <groupId>org.jfrog.buildinfo</groupId>
240 <artifactId>artifactory-maven-plugin</artifactId>
241 <versionRange>[1.0.0,)</versionRange>
242 <goals>
243 <goal>publish</goal>
244 </goals>
245 </pluginExecutionFilter>
246 <action>
247 <ignore />
248 </action>
249 </pluginExecution>
250 </pluginExecutions>
251 </lifecycleMappingMetadata>
252 </configuration>
253 </plugin>
254 </plugins>
255 </pluginManagement>
256
257
258 </build>
259</project>
Note: See TracBrowser for help on using the repository browser.