source: anac2020/ForArisa/pom.xml@ 77

Last change on this file since 77 was 1, checked in by wouter, 3 years ago

#1910 added anac2020 parties

File size: 6.3 KB
Line 
1<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4
5 <groupId>anac2020</groupId>
6 <artifactId>ForArisa</artifactId>
7 <version>0.0.1-SNAPSHOT</version>
8 <packaging>jar</packaging>
9
10 <name>ForArisa</name>
11 <url>http://maven.apache.org</url>
12
13
14
15 <properties>
16 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17 <maven.compiler.target>1.8</maven.compiler.target>
18 <maven.compiler.source>1.8</maven.compiler.source>
19 <basedir>.</basedir>
20 <jackson-2-version>2.9.6</jackson-2-version>
21 <geniusweb.version>1.4.2</geniusweb.version>
22 </properties>
23
24 <distributionManagement>
25 <repository>
26 <id>artifactory.ewi.tudelft.nl</id>
27 <url>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
28 </repository>
29 </distributionManagement>
30
31
32 <dependencies>
33
34
35 <dependency>
36 <groupId>geniusweb</groupId>
37 <artifactId>party</artifactId>
38 <version>${geniusweb.version}</version>
39 </dependency>
40
41 <dependency>
42 <groupId>geniusweb</groupId>
43 <artifactId>bidspace</artifactId>
44 <version>${geniusweb.version}</version>
45 </dependency>
46 <dependency>
47 <groupId>geniusweb</groupId>
48 <artifactId>profileconnection</artifactId>
49 <version>${geniusweb.version}</version>
50 </dependency>
51 <dependency>
52 <groupId>tudelft.utilities</groupId>
53 <artifactId>logging</artifactId>
54 <version>1.0.0</version>
55 </dependency>
56 <dependency>
57 <groupId>tudelft.utilities</groupId>
58 <artifactId>immutablelist</artifactId>
59 <version>1.1.0</version>
60 </dependency>
61
62 <!-- the core, which includes Streaming API, shared low-level abstractions
63 (but NOT data-binding) -->
64 <dependency>
65 <groupId>com.fasterxml.jackson.core</groupId>
66 <artifactId>jackson-core</artifactId>
67 <version>${jackson-2-version}</version>
68 <scope>test</scope>
69 </dependency>
70
71 <!-- Just the annotations; use this dependency if you want to attach annotations
72 to classes without connecting them to the code. -->
73 <dependency>
74 <groupId>com.fasterxml.jackson.core</groupId>
75 <artifactId>jackson-annotations</artifactId>
76 <version>${jackson-2-version}</version>
77 <scope>test</scope>
78 </dependency>
79
80 <!-- databinding; ObjectMapper, JsonNode and related classes are here -->
81 <dependency>
82 <groupId>com.fasterxml.jackson.core</groupId>
83 <artifactId>jackson-databind</artifactId>
84 <version>${jackson-2-version}</version>
85 <scope>test</scope>
86 </dependency>
87
88 <!-- smile (binary JSON). Other artifacts in this group do other formats. -->
89 <dependency>
90 <groupId>com.fasterxml.jackson.dataformat</groupId>
91 <artifactId>jackson-dataformat-smile</artifactId>
92 <version>${jackson-2-version}</version>
93 <scope>test</scope>
94 </dependency>
95 <!-- JAX-RS provider -->
96 <dependency>
97 <groupId>com.fasterxml.jackson.jaxrs</groupId>
98 <artifactId>jackson-jaxrs-json-provider</artifactId>
99 <version>${jackson-2-version}</version>
100 <scope>test</scope>
101 </dependency>
102 <!-- Support for JAX-B annotations as additional configuration -->
103 <dependency>
104 <groupId>com.fasterxml.jackson.module</groupId>
105 <artifactId>jackson-module-jaxb-annotations</artifactId>
106 <version>${jackson-2-version}</version>
107 <scope>test</scope>
108 </dependency>
109 <dependency>
110 <groupId>junit</groupId>
111 <artifactId>junit</artifactId>
112 <version>4.12</version>
113 <scope>test</scope>
114 </dependency>
115 <dependency>
116 <groupId>org.mockito</groupId>
117 <artifactId>mockito-all</artifactId>
118 <version>1.9.5</version>
119 <scope>test</scope>
120 </dependency>
121 <dependency>
122 <groupId>tudelft.utilities</groupId>
123 <artifactId>junit</artifactId>
124 <version>1.0.1</version>
125 <scope>test</scope>
126 </dependency>
127
128 </dependencies>
129
130
131 <repositories>
132 <repository>
133 <id>artifactory.ewi.tudelft.nl</id>
134 <url>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
135 <snapshots>
136 <enabled>false</enabled>
137 </snapshots>
138 </repository>
139
140 </repositories>
141
142 <pluginRepositories>
143 <pluginRepository>
144 <id>jcenter</id>
145 <url>https://jcenter.bintray.com</url>
146 </pluginRepository>
147 </pluginRepositories>
148
149
150 <build>
151
152 <plugins>
153 <plugin>
154 <groupId>org.apache.maven.plugins</groupId>
155 <artifactId>maven-compiler-plugin</artifactId>
156 <version>3.8.0</version>
157 <configuration>
158 <source>1.8</source>
159 <target>1.8</target>
160 </configuration>
161 </plugin>
162 <plugin>
163 <groupId>org.apache.maven.plugins</groupId>
164 <artifactId>maven-source-plugin</artifactId>
165 <version>3.1.0</version>
166 <executions>
167 <execution>
168 <id>attach-sources</id>
169 <goals>
170 <goal>jar</goal>
171 </goals>
172 </execution>
173 </executions>
174 </plugin>
175
176 <plugin>
177 <groupId>org.apache.maven.plugins</groupId>
178 <artifactId>maven-jar-plugin</artifactId>
179 <configuration>
180 <archive>
181 <manifest>
182 <mainClass>geniusweb.exampleparties.randomparty.RandomParty</mainClass>
183 </manifest>
184 </archive>
185 </configuration>
186 </plugin>
187
188 <plugin>
189 <groupId>org.apache.maven.plugins</groupId>
190 <artifactId>maven-javadoc-plugin</artifactId>
191 <version>2.10.1</version>
192 <executions>
193 <execution>
194 <id>attach-javadocs</id>
195 <goals>
196 <goal>jar</goal>
197 </goals>
198 <configuration>
199 <additionalparam>${javadoc.opts}</additionalparam>
200 <additionalparam>-Xdoclint:none</additionalparam>
201 </configuration>
202 </execution>
203 </executions>
204 </plugin>
205
206
207 <plugin>
208 <groupId>org.apache.maven.plugins</groupId>
209 <artifactId>maven-assembly-plugin</artifactId>
210 <version>2.4.1</version>
211 <configuration>
212 <!-- get all project dependencies -->
213 <descriptorRefs>
214 <descriptorRef>jar-with-dependencies</descriptorRef>
215 </descriptorRefs>
216 <archive>
217 <manifest>
218 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
219 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
220 <mainClass>geniusweb.exampleparties.randomparty.RandomParty</mainClass>
221 </manifest>
222 </archive>
223 </configuration>
224 <executions>
225 <execution>
226 <id>make-assembly</id>
227 <!-- bind to the packaging phase -->
228 <phase>package</phase>
229 <goals>
230 <goal>single</goal>
231 </goals>
232 </execution>
233 </executions>
234 </plugin>
235
236
237 </plugins>
238
239 </build>
240</project>
Note: See TracBrowser for help on using the repository browser.