source: simplerunner/pom.xml@ 32

Last change on this file since 32 was 32, checked in by bart, 3 years ago

Multiple learns with repeated tournament, maven use https.

File size: 6.3 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</groupId>
7 <artifactId>simplerunner</artifactId>
8 <version>1.6.1</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.9.10</jackson-2-version>
19 <geniusweb.version>1.6.1</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
82
83 </dependencies>
84
85
86 <repositories>
87 <repository>
88 <id>artifactory.ewi.tudelft.nl</id>
89 <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
90 <snapshots>
91 <enabled>false</enabled>
92 </snapshots>
93 </repository>
94 </repositories>
95
96 <pluginRepositories>
97 <pluginRepository>
98 <id>central</id>
99 <url>https://repo1.maven.org/</url>
100 </pluginRepository>
101 <pluginRepository>
102 <id>jfrog-plugins-release</id>
103 <name>plugins-release</name>
104 <url>https://oss.jfrog.org/artifactory/plugins-release</url>
105 </pluginRepository>
106 </pluginRepositories>
107
108
109 <build>
110
111 <plugins>
112 <plugin>
113 <groupId>org.apache.maven.plugins</groupId>
114 <artifactId>maven-compiler-plugin</artifactId>
115 <version>3.8.0</version>
116 <configuration>
117 <source>1.8</source>
118 <target>1.8</target>
119 </configuration>
120 </plugin>
121 <plugin>
122 <groupId>org.apache.maven.plugins</groupId>
123 <artifactId>maven-enforcer-plugin</artifactId>
124 <version>3.0.0-M2</version>
125 <executions>
126 <execution>
127 <id>enforce</id>
128 <configuration>
129 <rules>
130 <dependencyConvergence />
131 </rules>
132 </configuration>
133 <goals>
134 <goal>enforce</goal>
135 </goals>
136 </execution>
137 </executions>
138 </plugin>
139 <plugin>
140 <groupId>org.apache.maven.plugins</groupId>
141 <artifactId>maven-javadoc-plugin</artifactId>
142 <version>3.2.0</version>
143 <executions>
144 <execution>
145 <id>attach-javadocs</id>
146 <goals>
147 <goal>jar</goal>
148 </goals>
149 </execution>
150 </executions>
151 </plugin>
152
153 <plugin>
154 <groupId>org.apache.maven.plugins</groupId>
155 <artifactId>maven-source-plugin</artifactId>
156 <version>3.1.0</version>
157 <executions>
158 <execution>
159 <id>attach-sources</id>
160 <goals>
161 <goal>jar</goal>
162 </goals>
163 </execution>
164 </executions>
165 </plugin>
166
167 <plugin>
168 <groupId>org.jfrog.buildinfo</groupId>
169 <artifactId>artifactory-maven-plugin</artifactId>
170 <version>2.6.1</version>
171 <executions>
172 <execution>
173 <id>build-info</id>
174 <goals>
175 <goal>publish</goal>
176 </goals>
177 <configuration>
178 <publisher>
179 <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
180 <repoKey>libs-release</repoKey>
181 <username>wouter</username>
182 <password>${passwd}</password>
183 </publisher>
184 </configuration>
185 </execution>
186 </executions>
187 </plugin>
188
189 <plugin>
190 <groupId>org.apache.maven.plugins</groupId>
191 <artifactId>maven-assembly-plugin</artifactId>
192 <version>2.4.1</version>
193 <configuration>
194 <!-- get all project dependencies -->
195 <descriptorRefs>
196 <descriptorRef>jar-with-dependencies</descriptorRef>
197 </descriptorRefs>
198 <archive>
199 <manifest>
200 <mainClass>geniusweb.simplerunner.NegoRunner</mainClass>
201 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
202 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
203 </manifest>
204 </archive>
205 </configuration>
206 <executions>
207 <execution>
208 <id>make-assembly</id>
209 <!-- bind to the packaging phase -->
210 <phase>package</phase>
211 <goals>
212 <goal>single</goal>
213 </goals>
214 </execution>
215 </executions>
216 </plugin>
217
218
219 </plugins>
220
221 <pluginManagement>
222 <plugins>
223 <plugin>
224 <groupId>org.eclipse.m2e</groupId>
225 <artifactId>lifecycle-mapping</artifactId>
226 <version>1.0.0</version>
227 <configuration>
228 <lifecycleMappingMetadata>
229 <pluginExecutions>
230 <pluginExecution>
231 <pluginExecutionFilter>
232 <groupId>org.jfrog.buildinfo</groupId>
233 <artifactId>artifactory-maven-plugin</artifactId>
234 <versionRange>[1.0.0,)</versionRange>
235 <goals>
236 <goal>publish</goal>
237 </goals>
238 </pluginExecutionFilter>
239 <action>
240 <ignore />
241 </action>
242 </pluginExecution>
243 </pluginExecutions>
244 </lifecycleMappingMetadata>
245 </configuration>
246 </plugin>
247 </plugins>
248 </pluginManagement>
249
250
251 </build>
252</project>
Note: See TracBrowser for help on using the repository browser.