source: simplerunner/pom.xml@ 5

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

Initial Release

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 <executions>
123 <execution>
124 <id>attach-sources</id>
125 <goals>
126 <goal>jar</goal>
127 </goals>
128 </execution>
129 </executions>
130 </plugin>
131
132 <plugin>
133 <groupId>org.jfrog.buildinfo</groupId>
134 <artifactId>artifactory-maven-plugin</artifactId>
135 <version>2.6.1</version>
136 <executions>
137 <execution>
138 <id>build-info</id>
139 <goals>
140 <goal>publish</goal>
141 </goals>
142 <configuration>
143 <publisher>
144 <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
145 <repoKey>libs-release</repoKey>
146 <username>wouter</username>
147 <password>${passwd}</password>
148 </publisher>
149 </configuration>
150 </execution>
151 </executions>
152 </plugin>
153
154 <plugin>
155 <groupId>org.apache.maven.plugins</groupId>
156 <artifactId>maven-assembly-plugin</artifactId>
157 <version>2.4.1</version>
158 <configuration>
159 <!-- get all project dependencies -->
160 <descriptorRefs>
161 <descriptorRef>jar-with-dependencies</descriptorRef>
162 </descriptorRefs>
163 <archive>
164 <manifest>
165 <mainClass>geniusweb.simplerunner.NegoRunner</mainClass>
166 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
167 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
168 </manifest>
169 </archive>
170 </configuration>
171 <executions>
172 <execution>
173 <id>make-assembly</id>
174 <!-- bind to the packaging phase -->
175 <phase>package</phase>
176 <goals>
177 <goal>single</goal>
178 </goals>
179 </execution>
180 </executions>
181 </plugin>
182
183
184 </plugins>
185
186 <pluginManagement>
187 <plugins>
188 <plugin>
189 <groupId>org.eclipse.m2e</groupId>
190 <artifactId>lifecycle-mapping</artifactId>
191 <version>1.0.0</version>
192 <configuration>
193 <lifecycleMappingMetadata>
194 <pluginExecutions>
195 <pluginExecution>
196 <pluginExecutionFilter>
197 <groupId>org.jfrog.buildinfo</groupId>
198 <artifactId>artifactory-maven-plugin</artifactId>
199 <versionRange>[1.0.0,)</versionRange>
200 <goals>
201 <goal>publish</goal>
202 </goals>
203 </pluginExecutionFilter>
204 <action>
205 <ignore />
206 </action>
207 </pluginExecution>
208 </pluginExecutions>
209 </lifecycleMappingMetadata>
210 </configuration>
211 </plugin>
212 </plugins>
213 </pluginManagement>
214
215
216 </build>
217</project>
Note: See TracBrowser for help on using the repository browser.