This repository has been archived by the owner on Dec 18, 2019. It is now read-only.
forked from osintegrators/JavaSpringGranny
-
Notifications
You must be signed in to change notification settings - Fork 16
/
pom.xml
66 lines (56 loc) · 2.63 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
<?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>com.sap.hana.cloud.samples</groupId>
<artifactId>enterprise-granny</artifactId>
<name>enterprise-granny</name>
<packaging>pom</packaging>
<version>2.3.2-BUILD-SNAPSHOT</version>
<description>A sample address book application demonstrating the interplay of popular open-source libraries. [WIP]</description>
<properties>
<java-version>1.7</java-version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<org.springframework-version>4.2.5.RELEASE</org.springframework-version>
<org.springframework.data-version>1.11.4.RELEASE</org.springframework.data-version>
<org.springframework.data-jpa-version>1.9.4.RELEASE</org.springframework.data-jpa-version>
<org.apache.cxf-version>3.1.5</org.apache.cxf-version>
<org.codehaus.jackson-version>1.9.13</org.codehaus.jackson-version>
<javax.ws.rs.jsr311-api-version>1.1.1</javax.ws.rs.jsr311-api-version>
<com.webcohesion.enunciate-version>2.5.0</com.webcohesion.enunciate-version>
<org.aspectj-version>1.8.7</org.aspectj-version>
<cglib-version>2.2</cglib-version>
<org.apache.tiles-version>2.2.2</org.apache.tiles-version>
<org.slf4j-version>1.7.13</org.slf4j-version>
<log4j-version>1.2.16</log4j-version>
<org.springframework.cloud-version>1.2.2.RELEASE</org.springframework.cloud-version>
<com.sap.hana.cloud-version>1.0.4.RELEASE</com.sap.hana.cloud-version>
<com.sap.cloud.neo.api-version>1.92.21.3</com.sap.cloud.neo.api-version>
</properties>
<organization>
<name>SAP SE</name>
<url>http://www.sap.com</url>
</organization>
<developers>
<developer>
<name>SAP HANA Cloud Platform</name>
<url>http://hcp.sap.com</url>
<organization>SAP SE</organization>
<organizationUrl>http://www.sap.com/</organizationUrl>
</developer>
</developers>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<url>https://github.com/SAP/cloud-enterprise-granny</url>
<modules>
<module>enterprise-granny-core</module>
<module>enterprise-granny-service</module>
<module>enterprise-granny-client</module>
<module>enterprise-granny-phonelib</module>
</modules>
</project>