source: boa/pom.xml@ 33

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

Major update. Changes in json serialization, maven dependencies and BOA. Fix in stand-alone runner.

File size: 6.1 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>2.0.0</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>2.0.0</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/maven2</url>
104 </pluginRepository>
105 </pluginRepositories>
106
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-source-plugin</artifactId>
124 <version>3.1.0</version>
125 <executions>
126 <execution>
127 <id>attach-sources</id>
128 <goals>
129 <goal>jar</goal>
130 </goals>
131 </execution>
132 </executions>
133 </plugin>
134
135 <plugin>
136 <groupId>org.apache.maven.plugins</groupId>
137 <artifactId>maven-jar-plugin</artifactId>
138 <configuration>
139 <archive>
140 <manifest>
141 <mainClass>geniusweb.boa.BoaParty</mainClass>
142 </manifest>
143 </archive>
144 </configuration>
145 </plugin>
146
147 <plugin>
148 <groupId>org.apache.maven.plugins</groupId>
149 <artifactId>maven-javadoc-plugin</artifactId>
150 <version>3.2.0</version>
151 <executions>
152 <execution>
153 <id>attach-javadocs</id>
154 <goals>
155 <goal>jar</goal>
156 </goals>
157 </execution>
158 </executions>
159 </plugin>
160
161 <plugin>
162 <groupId>org.jfrog.buildinfo</groupId>
163 <artifactId>artifactory-maven-plugin</artifactId>
164 <version>3.2.3</version>
165 <executions>
166 <execution>
167 <id>build-info</id>
168 <goals>
169 <goal>publish</goal>
170 </goals>
171 <configuration>
172 <publisher>
173 <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
174 <repoKey>libs-release</repoKey>
175 <username>wouter</username>
176 <password>${passwd}</password>
177 </publisher>
178 </configuration>
179 </execution>
180 </executions>
181 </plugin>
182
183 <plugin>
184 <groupId>org.apache.maven.plugins</groupId>
185 <artifactId>maven-assembly-plugin</artifactId>
186 <version>2.4.1</version>
187 <configuration>
188 <!-- get all project dependencies -->
189 <descriptorRefs>
190 <descriptorRef>jar-with-dependencies</descriptorRef>
191 </descriptorRefs>
192 <archive>
193 <manifest>
194 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
195 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
196 <mainClass>geniusweb.boa.BoaParty</mainClass>
197 </manifest>
198 </archive>
199 </configuration>
200 <executions>
201 <execution>
202 <id>make-assembly</id>
203 <!-- bind to the packaging phase -->
204 <phase>package</phase>
205 <goals>
206 <goal>single</goal>
207 </goals>
208 </execution>
209 </executions>
210 </plugin>
211
212
213 </plugins>
214
215 <pluginManagement>
216 <plugins>
217 <plugin>
218 <groupId>org.eclipse.m2e</groupId>
219 <artifactId>lifecycle-mapping</artifactId>
220 <version>1.0.0</version>
221 <configuration>
222 <lifecycleMappingMetadata>
223 <pluginExecutions>
224 <pluginExecution>
225 <pluginExecutionFilter>
226 <groupId>org.jfrog.buildinfo</groupId>
227 <artifactId>artifactory-maven-plugin</artifactId>
228 <versionRange>[1.0.0,)</versionRange>
229 <goals>
230 <goal>publish</goal>
231 </goals>
232 </pluginExecutionFilter>
233 <action>
234 <ignore />
235 </action>
236 </pluginExecution>
237 </pluginExecutions>
238 </lifecycleMappingMetadata>
239 </configuration>
240 </plugin>
241 </plugins>
242 </pluginManagement>
243
244
245 </build>
246</project>
Note: See TracBrowser for help on using the repository browser.