source: ip/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: 4.9 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>ip</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 <dependency>
32 <groupId>org.apache.commons</groupId>
33 <artifactId>commons-math</artifactId>
34 <version>2.2</version>
35 </dependency>
36 <dependency>
37 <groupId>junit</groupId>
38 <artifactId>junit</artifactId>
39 <version>4.12</version>
40 <scope>test</scope>
41 </dependency>
42
43 </dependencies>
44
45
46 <repositories>
47 <repository>
48 <id>artifactory.ewi.tudelft.nl</id>
49 <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
50 <snapshots>
51 <enabled>false</enabled>
52 </snapshots>
53 </repository>
54 </repositories>
55
56 <pluginRepositories>
57 <pluginRepository>
58 <id>central</id>
59 <url>https://repo1.maven.org/</url>
60 </pluginRepository>
61 <pluginRepository>
62 <id>jfrog-plugins-release</id>
63 <name>plugins-release</name>
64 <url>https://oss.jfrog.org/artifactory/plugins-release</url>
65 </pluginRepository>
66 </pluginRepositories>
67
68 <build>
69
70 <plugins>
71 <plugin>
72 <groupId>org.apache.maven.plugins</groupId>
73 <artifactId>maven-compiler-plugin</artifactId>
74 <version>3.8.0</version>
75 <configuration>
76 <source>1.8</source>
77 <target>1.8</target>
78 </configuration>
79 </plugin>
80
81 <plugin>
82 <groupId>org.apache.maven.plugins</groupId>
83 <artifactId>maven-source-plugin</artifactId>
84 <version>3.1.0</version>
85 <executions>
86 <execution>
87 <id>attach-sources</id>
88 <goals>
89 <goal>jar</goal>
90 </goals>
91 </execution>
92 </executions>
93 </plugin>
94
95 <!-- The javadoc is disabled because this basically is a clone of 3rd
96 party code that has no proper documentation. <plugin> <groupId>org.apache.maven.plugins</groupId>
97 <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <executions>
98 <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution>
99 </executions> </plugin> -->
100 <plugin>
101 <groupId>org.jfrog.buildinfo</groupId>
102 <artifactId>artifactory-maven-plugin</artifactId>
103 <version>2.6.1</version>
104 <executions>
105 <execution>
106 <id>build-info</id>
107 <goals>
108 <goal>publish</goal>
109 </goals>
110 <configuration>
111 <publisher>
112 <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
113 <repoKey>libs-release</repoKey>
114 <username>wouter</username>
115 <password>${passwd}</password>
116 </publisher>
117 </configuration>
118 </execution>
119 </executions>
120 </plugin>
121
122 <plugin>
123 <groupId>org.apache.maven.plugins</groupId>
124 <artifactId>maven-assembly-plugin</artifactId>
125 <version>2.4.1</version>
126 <configuration>
127 <!-- get all project dependencies -->
128 <descriptorRefs>
129 <descriptorRef>jar-with-dependencies</descriptorRef>
130 </descriptorRefs>
131 <archive>
132 <manifest>
133 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
134 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
135 </manifest>
136 </archive>
137 </configuration>
138 <executions>
139 <execution>
140 <id>make-assembly</id>
141 <!-- bind to the packaging phase -->
142 <phase>package</phase>
143 <goals>
144 <goal>single</goal>
145 </goals>
146 </execution>
147 </executions>
148 </plugin>
149
150
151 </plugins>
152
153 <pluginManagement>
154 <plugins>
155 <plugin>
156 <groupId>org.eclipse.m2e</groupId>
157 <artifactId>lifecycle-mapping</artifactId>
158 <version>1.0.0</version>
159 <configuration>
160 <lifecycleMappingMetadata>
161 <pluginExecutions>
162 <pluginExecution>
163 <pluginExecutionFilter>
164 <groupId>org.jfrog.buildinfo</groupId>
165 <artifactId>artifactory-maven-plugin</artifactId>
166 <versionRange>[1.0.0,)</versionRange>
167 <goals>
168 <goal>publish</goal>
169 </goals>
170 </pluginExecutionFilter>
171 <action>
172 <ignore />
173 </action>
174 </pluginExecution>
175 </pluginExecutions>
176 </lifecycleMappingMetadata>
177 </configuration>
178 </plugin>
179 </plugins>
180 </pluginManagement>
181
182
183 </build>
184</project>
Note: See TracBrowser for help on using the repository browser.