source: bidspace/pom.xml@ 53

Last change on this file since 53 was 53, checked in by ruud, 4 days ago

All TimeDependent parties now support the nonlinear SumOfGroupsUtilitySpace. Example Nonlinear space in the computer domain

File size: 7.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>bidspace</artifactId>
8 <version>2.2.1</version> <!-- equals the geniusweb version -->
9 <packaging>jar</packaging>
10
11 <properties>
12 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
13 <maven.compiler.target>1.8</maven.compiler.target>
14 <maven.compiler.source>1.8</maven.compiler.source>
15 <basedir>.</basedir>
16 <passwd>${env.ARTIFACTORY_PASS}</passwd>
17 <jackson-2-version>2.12.3</jackson-2-version>
18 <geniusweb.version>${project.version}</geniusweb.version>
19 </properties>
20
21 <distributionManagement>
22 <repository>
23 <id>artifactory.ewi.tudelft.nl</id>
24 <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
25 </repository>
26 </distributionManagement>
27
28
29 <!-- <repositories> <repository> <id>smartics</id> <url>https://www.smartics.eu/nexus/content/repositories/public</url>
30 <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled>
31 </snapshots> </repository> </repositories> -->
32
33
34 <dependencies>
35
36 <dependency>
37 <groupId>geniusweb</groupId>
38 <artifactId>profile</artifactId>
39 <version>${geniusweb.version}</version>
40 </dependency>
41
42 <dependency>
43 <groupId>tudelft.utilities</groupId>
44 <artifactId>utilities</artifactId>
45 <version>1.3.1</version>
46 </dependency>
47
48
49 <!-- the core, which includes Streaming API, shared low-level abstractions
50 (but NOT data-binding) -->
51 <dependency>
52 <groupId>com.fasterxml.jackson.core</groupId>
53 <artifactId>jackson-core</artifactId>
54 <version>${jackson-2-version}</version>
55 </dependency>
56
57 <!-- Just the annotations; use this dependency if you want to attach annotations
58 to classes without connecting them to the code. -->
59 <dependency>
60 <groupId>com.fasterxml.jackson.core</groupId>
61 <artifactId>jackson-annotations</artifactId>
62 <version>${jackson-2-version}</version>
63 </dependency>
64
65 <!-- databinding; ObjectMapper, JsonNode and related classes are here -->
66 <dependency>
67 <groupId>com.fasterxml.jackson.core</groupId>
68 <artifactId>jackson-databind</artifactId>
69 <version>${jackson-2-version}</version>
70 </dependency>
71
72 <!-- smile (binary JSON). Other artifacts in this group do other formats. -->
73 <dependency>
74 <groupId>com.fasterxml.jackson.dataformat</groupId>
75 <artifactId>jackson-dataformat-smile</artifactId>
76 <version>${jackson-2-version}</version>
77 </dependency>
78 <!-- JAX-RS provider -->
79 <dependency>
80 <groupId>com.fasterxml.jackson.jaxrs</groupId>
81 <artifactId>jackson-jaxrs-json-provider</artifactId>
82 <version>${jackson-2-version}</version>
83 </dependency>
84 <!-- Support for JAX-B annotations as additional configuration -->
85 <dependency>
86 <groupId>com.fasterxml.jackson.module</groupId>
87 <artifactId>jackson-module-jaxb-annotations</artifactId>
88 <version>${jackson-2-version}</version>
89 </dependency>
90 <dependency>
91 <groupId>junit</groupId>
92 <artifactId>junit</artifactId>
93 <version>4.12</version>
94 <scope>test</scope>
95 </dependency>
96 <dependency>
97 <groupId>org.mockito</groupId>
98 <artifactId>mockito-core</artifactId>
99 <version>3.11.2</version>
100 <scope>test</scope>
101 </dependency>
102
103 <dependency>
104 <groupId>tudelft.utilities</groupId>
105 <artifactId>junit</artifactId>
106 <version>1.0.5</version>
107 <scope>test</scope>
108 </dependency>
109 <dependency>
110 <groupId>org.openjdk.jol</groupId>
111 <artifactId>jol-core</artifactId>
112 <version>0.16</version>
113 <scope>test</scope>
114 </dependency>
115 <dependency>
116 <groupId>org.apache.commons</groupId>
117 <artifactId>commons-math</artifactId>
118 <version>2.2</version>
119 <scope>test</scope>
120 </dependency>
121 </dependencies>
122
123
124 <repositories>
125 <repository>
126 <id>artifactory.ewi.tudelft.nl</id>
127 <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
128 <snapshots>
129 <enabled>false</enabled>
130 </snapshots>
131 </repository>
132 </repositories>
133
134 <pluginRepositories>
135 <pluginRepository>
136 <id>central</id>
137 <url>https://repo1.maven.org/maven2</url>
138 </pluginRepository>
139 <pluginRepository>
140 <id>artifactory.ewi.tudelft.nl</id>
141 <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
142 </pluginRepository>
143 </pluginRepositories>
144
145
146
147 <build>
148
149 <plugins>
150 <plugin>
151 <groupId>org.apache.maven.plugins</groupId>
152 <artifactId>maven-compiler-plugin</artifactId>
153 <version>3.8.0</version>
154 <configuration>
155 <source>1.8</source>
156 <target>1.8</target>
157 </configuration>
158 </plugin>
159 <plugin>
160 <groupId>org.apache.maven.plugins</groupId>
161 <artifactId>maven-source-plugin</artifactId>
162 <version>3.1.0</version>
163 <executions>
164 <execution>
165 <id>attach-sources</id>
166 <goals>
167 <goal>jar</goal>
168 </goals>
169 </execution>
170 </executions>
171 </plugin>
172
173 <plugin>
174 <groupId>org.apache.maven.plugins</groupId>
175 <artifactId>maven-javadoc-plugin</artifactId>
176 <version>3.2.0</version>
177 <executions>
178 <execution>
179 <id>attach-javadocs</id>
180 <goals>
181 <goal>jar</goal>
182 </goals>
183 </execution>
184 </executions>
185 </plugin>
186
187 <plugin>
188 <groupId>org.jfrog.buildinfo</groupId>
189 <artifactId>artifactory-maven-plugin</artifactId>
190 <version>3.2.3</version>
191 <executions>
192 <execution>
193 <id>build-info</id>
194 <goals>
195 <goal>publish</goal>
196 </goals>
197 <configuration>
198 <publisher>
199 <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
200 <repoKey>libs-release</repoKey>
201 <username>wouter</username>
202 <password>${passwd}</password>
203 </publisher>
204 </configuration>
205 </execution>
206 </executions>
207 </plugin>
208
209 <plugin>
210 <groupId>org.apache.maven.plugins</groupId>
211 <artifactId>maven-assembly-plugin</artifactId>
212 <version>2.4.1</version>
213 <configuration>
214 <!-- get all project dependencies -->
215 <descriptorRefs>
216 <descriptorRef>jar-with-dependencies</descriptorRef>
217 </descriptorRefs>
218 <archive>
219 <manifest>
220 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
221 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
222 </manifest>
223 </archive>
224 </configuration>
225 <executions>
226 <execution>
227 <id>make-assembly</id>
228 <!-- bind to the packaging phase -->
229 <phase>package</phase>
230 <goals>
231 <goal>single</goal>
232 </goals>
233 </execution>
234 </executions>
235 </plugin>
236
237
238 </plugins>
239
240 <pluginManagement>
241 <plugins>
242 <plugin>
243 <groupId>org.eclipse.m2e</groupId>
244 <artifactId>lifecycle-mapping</artifactId>
245 <version>1.0.0</version>
246 <configuration>
247 <lifecycleMappingMetadata>
248 <pluginExecutions>
249 <pluginExecution>
250 <pluginExecutionFilter>
251 <groupId>org.jfrog.buildinfo</groupId>
252 <artifactId>artifactory-maven-plugin</artifactId>
253 <versionRange>[1.0.0,)</versionRange>
254 <goals>
255 <goal>publish</goal>
256 </goals>
257 </pluginExecutionFilter>
258 <action>
259 <ignore />
260 </action>
261 </pluginExecution>
262 </pluginExecutions>
263 </lifecycleMappingMetadata>
264 </configuration>
265 </plugin>
266 </plugins>
267 </pluginManagement>
268
269
270 </build>
271</project>
Note: See TracBrowser for help on using the repository browser.