source: simplerunner/pom.xml@ 6

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

Fix pom source-plugin version nr

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