source: bidspace/pom.xml@ 25

Last change on this file since 25 was 25, checked in by bart, 4 years ago

MOPAC support for timedependentparty, boulware, conceder, hardliner, linear

File size: 6.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>bidspace</artifactId>
8 <version>1.5.4</version> <!-- must equal ${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.9.10</jackson-2-version>
18 <geniusweb.version>1.5.4</geniusweb.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
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>immutablelist</artifactId>
45 <version>1.1.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-all</artifactId>
99 <version>1.9.5</version>
100 <scope>test</scope>
101 </dependency>
102
103 <dependency>
104 <groupId>tudelft.utilities</groupId>
105 <artifactId>junit</artifactId>
106 <version>1.0.3</version>
107 <scope>test</scope>
108 </dependency>
109
110 </dependencies>
111
112
113 <repositories>
114 <repository>
115 <id>artifactory.ewi.tudelft.nl</id>
116 <url>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
117 <snapshots>
118 <enabled>false</enabled>
119 </snapshots>
120 </repository>
121
122 </repositories>
123
124 <pluginRepositories>
125 <pluginRepository>
126 <id>jcenter</id>
127 <url>https://jcenter.bintray.com</url>
128 </pluginRepository>
129 </pluginRepositories>
130
131
132 <build>
133
134 <plugins>
135 <plugin>
136 <groupId>org.apache.maven.plugins</groupId>
137 <artifactId>maven-compiler-plugin</artifactId>
138 <version>3.8.0</version>
139 <configuration>
140 <source>1.8</source>
141 <target>1.8</target>
142 </configuration>
143 </plugin>
144 <plugin>
145 <groupId>org.apache.maven.plugins</groupId>
146 <artifactId>maven-source-plugin</artifactId>
147 <version>3.1.0</version>
148 <executions>
149 <execution>
150 <id>attach-sources</id>
151 <goals>
152 <goal>jar</goal>
153 </goals>
154 </execution>
155 </executions>
156 </plugin>
157
158 <plugin>
159 <groupId>org.apache.maven.plugins</groupId>
160 <artifactId>maven-javadoc-plugin</artifactId>
161 <version>3.2.0</version>
162 <executions>
163 <execution>
164 <id>attach-javadocs</id>
165 <goals>
166 <goal>jar</goal>
167 </goals>
168 </execution>
169 </executions>
170 </plugin>
171
172 <plugin>
173 <groupId>org.jfrog.buildinfo</groupId>
174 <artifactId>artifactory-maven-plugin</artifactId>
175 <version>2.6.1</version>
176 <executions>
177 <execution>
178 <id>build-info</id>
179 <goals>
180 <goal>publish</goal>
181 </goals>
182 <configuration>
183 <publisher>
184 <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
185 <repoKey>libs-release</repoKey>
186 <username>wouter</username>
187 <password>${passwd}</password>
188 </publisher>
189 </configuration>
190 </execution>
191 </executions>
192 </plugin>
193
194 <plugin>
195 <groupId>org.apache.maven.plugins</groupId>
196 <artifactId>maven-assembly-plugin</artifactId>
197 <version>2.4.1</version>
198 <configuration>
199 <!-- get all project dependencies -->
200 <descriptorRefs>
201 <descriptorRef>jar-with-dependencies</descriptorRef>
202 </descriptorRefs>
203 <archive>
204 <manifest>
205 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
206 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
207 </manifest>
208 </archive>
209 </configuration>
210 <executions>
211 <execution>
212 <id>make-assembly</id>
213 <!-- bind to the packaging phase -->
214 <phase>package</phase>
215 <goals>
216 <goal>single</goal>
217 </goals>
218 </execution>
219 </executions>
220 </plugin>
221
222
223 </plugins>
224
225 <pluginManagement>
226 <plugins>
227 <plugin>
228 <groupId>org.eclipse.m2e</groupId>
229 <artifactId>lifecycle-mapping</artifactId>
230 <version>1.0.0</version>
231 <configuration>
232 <lifecycleMappingMetadata>
233 <pluginExecutions>
234 <pluginExecution>
235 <pluginExecutionFilter>
236 <groupId>org.jfrog.buildinfo</groupId>
237 <artifactId>artifactory-maven-plugin</artifactId>
238 <versionRange>[1.0.0,)</versionRange>
239 <goals>
240 <goal>publish</goal>
241 </goals>
242 </pluginExecutionFilter>
243 <action>
244 <ignore />
245 </action>
246 </pluginExecution>
247 </pluginExecutions>
248 </lifecycleMappingMetadata>
249 </configuration>
250 </plugin>
251 </plugins>
252 </pluginManagement>
253
254
255 </build>
256</project>
Note: See TracBrowser for help on using the repository browser.