source: simplerunner/pom.xml@ 20

Last change on this file since 20 was 20, checked in by bart, 4 years ago

Added BOA support, some bug fixes

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