source: events/pom.xml@ 20

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

Added BOA support, some bug fixes

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