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