source: exampleparties/hardliner/pom.xml@ 32

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

Multiple learns with repeated tournament, maven use https.

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