source: simplerunner/pom.xml@ 9

Last change on this file since 9 was 9, checked in by bart, 5 years ago

Release 1.1.0

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