1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 |
|
3 |
<!-- |
4 |
Copyright 2014-2015 Hippo B.V. (http://www.onehippo.com) |
5 |
|
6 |
Licensed under the Apache License, Version 2.0 (the "License"); |
7 |
you may not use this file except in compliance with the License. |
8 |
You may obtain a copy of the License at |
9 |
|
10 |
http://www.apache.org/licenses/LICENSE-2.0 |
11 |
|
12 |
Unless required by applicable law or agreed to in writing, software |
13 |
distributed under the License is distributed on an "AS IS" BASIS, |
14 |
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
15 |
See the License for the specific language governing permissions and |
16 |
limitations under the License. |
17 |
--> |
18 |
|
19 |
<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"> |
20 |
<modelVersion>4.0.0</modelVersion> |
21 |
|
22 |
<parent> |
23 |
<groupId>org.onehippo.cms7</groupId> |
24 |
<artifactId>hippo-essentials</artifactId> |
25 |
<version>3.0.0-SNAPSHOT</version> |
26 |
</parent> |
27 |
|
28 |
<name>Hippo Essentials Plugin SDK</name> |
29 |
<description>Hippo Essentials Plugin SDK</description> |
30 |
<artifactId>hippo-essentials-plugin-sdk</artifactId> |
31 |
<packaging>pom</packaging> |
32 |
|
33 |
<properties> |
34 |
<javax.inject.version>1</javax.inject.version> |
35 |
<maven-model.version>3.2.1</maven-model.version> |
36 |
<commons-io.version>2.3</commons-io.version> |
37 |
<core.jdt.version>3.10.0</core.jdt.version> |
38 |
<mustache.version>0.8.16</mustache.version> |
39 |
<swagger-jaxrs_2.10.version>1.3.0</swagger-jaxrs_2.10.version> |
40 |
</properties> |
41 |
|
42 |
<modules> |
43 |
<module>api</module> |
44 |
<module>implementation</module> |
45 |
</modules> |
46 |
|
47 |
<dependencyManagement> |
48 |
<dependencies> |
49 |
<dependency> |
50 |
<groupId>org.springframework</groupId> |
51 |
<artifactId>spring-core</artifactId> |
52 |
<version>${spring.version}</version> |
53 |
</dependency> |
54 |
<dependency> |
55 |
<groupId>org.springframework</groupId> |
56 |
<artifactId>spring-context</artifactId> |
57 |
<version>${spring.version}</version> |
58 |
</dependency> |
59 |
<dependency> |
60 |
<groupId>org.springframework</groupId> |
61 |
<artifactId>spring-expression</artifactId> |
62 |
<version>${spring.version}</version> |
63 |
</dependency> |
64 |
<dependency> |
65 |
<groupId>org.springframework</groupId> |
66 |
<artifactId>spring-beans</artifactId> |
67 |
<version>${spring.version}</version> |
68 |
</dependency> |
69 |
<dependency> |
70 |
<groupId>org.springframework</groupId> |
71 |
<artifactId>spring-web</artifactId> |
72 |
<version>${spring.version}</version> |
73 |
</dependency> |
74 |
<dependency> |
75 |
<groupId>javax.inject</groupId> |
76 |
<artifactId>javax.inject</artifactId> |
77 |
<version>${javax.inject.version}</version> |
78 |
</dependency> |
79 |
<dependency> |
80 |
<groupId>com.github.spullara.mustache.java</groupId> |
81 |
<artifactId>compiler</artifactId> |
82 |
<version>${mustache.version}</version> |
83 |
</dependency> |
84 |
<dependency> |
85 |
<groupId>org.apache.maven</groupId> |
86 |
<artifactId>maven-model</artifactId> |
87 |
<version>${maven-model.version}</version> |
88 |
</dependency> |
89 |
<dependency> |
90 |
<groupId>com.google.guava</groupId> |
91 |
<artifactId>guava</artifactId> |
92 |
<version>${guava.version}</version> |
93 |
</dependency> |
94 |
<dependency> |
95 |
<groupId>com.wordnik</groupId> |
96 |
<artifactId>swagger-annotations_2.10</artifactId> |
97 |
<version>${swagger-jaxrs_2.10.version}</version> |
98 |
</dependency> |
99 |
<dependency> |
100 |
<groupId>com.wordnik</groupId> |
101 |
<artifactId>swagger-jaxrs_2.10</artifactId> |
102 |
<version>${swagger-jaxrs_2.10.version}</version> |
103 |
<scope>runtime</scope> |
104 |
<exclusions> |
105 |
<exclusion> |
106 |
<groupId>com.fasterxml.jackson.module</groupId> |
107 |
<artifactId>jackson-module-scala_2.10</artifactId> |
108 |
</exclusion> |
109 |
<exclusion> |
110 |
<groupId>org.scala-lang</groupId> |
111 |
<artifactId>scalap</artifactId> |
112 |
</exclusion> |
113 |
<exclusion> |
114 |
<groupId>javax.ws.rs</groupId> |
115 |
<artifactId>jsr311-api</artifactId> |
116 |
</exclusion> |
117 |
</exclusions> |
118 |
</dependency> |
119 |
<dependency> |
120 |
<groupId>commons-io</groupId> |
121 |
<artifactId>commons-io</artifactId> |
122 |
<version>${commons-io.version}</version> |
123 |
</dependency> |
124 |
<dependency> |
125 |
<groupId>org.eclipse.jdt</groupId> |
126 |
<artifactId>org.eclipse.jdt.core</artifactId> |
127 |
<version>${core.jdt.version}</version> |
128 |
</dependency> |
129 |
</dependencies> |
130 |
</dependencyManagement> |
131 |
</project> |