source: simplerunner/pom.xml@ 13

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

All refs to bintray now use https

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.3.1</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 </properties>
20
21 <distributionManagement>
22 <repository>
23 <id>artifactory.ewi.tudelft.nl</id>
24 <url>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
25 </repository>
26 </distributionManagement>
27
28 <dependencies>
29
30 <dependency>
31 <groupId>geniusweb</groupId>
32 <artifactId>protocol</artifactId>
33 <version>1.3.1</version>
34 </dependency>
35 <dependency>
36 <groupId>geniusweb</groupId>
37 <artifactId>party</artifactId>
38 <version>1.3.1</version>
39 </dependency>
40 <dependency>
41 <groupId>geniusweb.exampleparties</groupId>
42 <artifactId>randomparty</artifactId>
43 <version>1.3.1</version>
44 <scope>test</scope>
45 </dependency>
46 <dependency>
47 <groupId>geniusweb.exampleparties</groupId>
48 <artifactId>comparebids</artifactId>
49 <version>1.3.1</version>
50 <scope>test</scope>
51 </dependency>
52 <dependency>
53 <groupId>geniusweb.exampleparties</groupId>
54 <artifactId>simpleshaop</artifactId>
55 <version>1.3.1</version>
56 <scope>test</scope>
57 </dependency>
58
59 <dependency>
60 <groupId>tudelft.utilities</groupId>
61 <artifactId>junit</artifactId>
62 <version>1.0.2</version>
63 <scope>test</scope>
64 </dependency>
65 <dependency>
66 <groupId>junit</groupId>
67 <artifactId>junit</artifactId>
68 <version>4.12</version>
69 <scope>test</scope>
70 </dependency>
71 <dependency>
72 <groupId>org.mockito</groupId>
73 <artifactId>mockito-all</artifactId>
74 <version>1.9.5</version>
75 <scope>test</scope>
76 </dependency>
77
78
79 </dependencies>
80
81
82 <repositories>
83 <repository>
84 <id>artifactory.ewi.tudelft.nl</id>
85 <url>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
86 <snapshots>
87 <enabled>false</enabled>
88 </snapshots>
89 </repository>
90
91 </repositories>
92
93 <pluginRepositories>
94 <pluginRepository>
95 <id>jcenter</id>
96 <url>https://jcenter.bintray.com</url>
97 </pluginRepository>
98 </pluginRepositories>
99
100
101 <build>
102
103 <plugins>
104 <plugin>
105 <groupId>org.apache.maven.plugins</groupId>
106 <artifactId>maven-compiler-plugin</artifactId>
107 <version>3.8.0</version>
108 <configuration>
109 <source>1.8</source>
110 <target>1.8</target>
111 </configuration>
112 </plugin>
113 <plugin>
114 <groupId>org.apache.maven.plugins</groupId>
115 <artifactId>maven-enforcer-plugin</artifactId>
116 <version>3.0.0-M2</version>
117 <executions>
118 <execution>
119 <id>enforce</id>
120 <configuration>
121 <rules>
122 <dependencyConvergence />
123 </rules>
124 </configuration>
125 <goals>
126 <goal>enforce</goal>
127 </goals>
128 </execution>
129 </executions>
130 </plugin>
131 <plugin>
132 <groupId>org.apache.maven.plugins</groupId>
133 <artifactId>maven-javadoc-plugin</artifactId>
134 <version>2.10.1</version>
135 <executions>
136 <execution>
137 <id>attach-javadocs</id>
138 <goals>
139 <goal>jar</goal>
140 </goals>
141 <configuration>
142 <additionalparam>${javadoc.opts}</additionalparam>
143 <additionalparam>-Xdoclint:none</additionalparam>
144 </configuration>
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.