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