source: simplerunner/pom.xml@ 29

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

some minor fixes

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