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