forked from europeana/api2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
81 lines (73 loc) · 3.15 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2007-2015 The Europeana Foundation
~
~ Licenced under the EUPL, Version 1.1 (the "Licence") and subsequent versions as approved
~ by the European Commission;
~ You may not use this work except in compliance with the Licence.
~
~ You may obtain a copy of the Licence at:
~ http://joinup.ec.europa.eu/software/page/eupl
~
~ Unless required by applicable law or agreed to in writing, software distributed under
~ the Licence is distributed on an "AS IS" basis, without warranties or conditions of
~ any kind, either express or implied.
~ See the Licence for the specific language governing permissions and limitations under
~ the Licence.
--><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>eu.europeana</groupId>
<artifactId>europeana-parent-pom</artifactId>
<version>2.0</version>
</parent>
<artifactId>api2</artifactId>
<version>2.7.2-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Europeana Search, Record, Hierarchical and Thumbnail API</name>
<url>http://www.europeana.eu</url>
<properties>
<corelib.version>2.7.1</corelib.version>
<httpclient.version>4.5.2</httpclient.version>
<jackson.version>2.6.5</jackson.version>
<jodatime.version>2.9.2</jodatime.version>
<junit.version>4.12</junit.version>
<mockito.version>1.10.19</mockito.version>
<servletJstl.version>1.2</servletJstl.version>
<springBoot.version>1.3.5.RELEASE</springBoot.version>
<springCore.version>4.2.5.RELEASE</springCore.version>
<springWebService.version>2.2.4.RELEASE</springWebService.version>
<springSecurity.version>3.2.9.RELEASE</springSecurity.version>
<springSecurityOauth.version>2.0.8.RELEASE</springSecurityOauth.version>
<swagger.version>2.3.0</swagger.version>
</properties>
<modules>
<module>api2-model</module>
<module>api2-war</module>
</modules>
<scm>
<connection>scm:git:[email protected]:europeana/api2.git</connection>
<developerConnection>scm:git:[email protected]:europeana/api2.git</developerConnection>
<url>https://github.com/europeana/api2</url>
<tag>HEAD</tag>
</scm>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<!-- we need to deactivate the enforcer plugin for now, until we have a proper release of CRF -->
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>enforce-no-snapshots</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>