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-plugin-sdk</artifactId> |
25 |
<version>3.0.0-SNAPSHOT</version> |
26 |
</parent> |
27 |
|
28 |
<name>Hippo Essentials Plugin SDK Implementation</name> |
29 |
<description>Hippo Essentials Plugin SDK Implementation</description> |
30 |
<artifactId>hippo-essentials-plugin-sdk-implementation</artifactId> |
31 |
<packaging>jar</packaging> |
32 |
|
33 |
<dependencies> |
34 |
<dependency> |
35 |
<groupId>org.codehaus.jackson</groupId> |
36 |
<artifactId>jackson-core-asl</artifactId> |
37 |
<version>${jackson.version}</version> |
38 |
</dependency> |
39 |
<dependency> |
40 |
<groupId>com.wordnik</groupId> |
41 |
<artifactId>swagger-annotations_2.10</artifactId> |
42 |
</dependency> |
43 |
<dependency> |
44 |
<groupId>com.wordnik</groupId> |
45 |
<artifactId>swagger-jaxrs_2.10</artifactId> |
46 |
</dependency> |
47 |
<dependency> |
48 |
<groupId>javax.ws.rs</groupId> |
49 |
<artifactId>javax.ws.rs-api</artifactId> |
50 |
</dependency> |
51 |
<dependency> |
52 |
<groupId>javax.inject</groupId> |
53 |
<artifactId>javax.inject</artifactId> |
54 |
</dependency> |
55 |
<dependency> |
56 |
<groupId>com.github.spullara.mustache.java</groupId> |
57 |
<artifactId>compiler</artifactId> |
58 |
</dependency> |
59 |
<dependency> |
60 |
<groupId>org.onehippo.cms7</groupId> |
61 |
<artifactId>hippo-essentials-plugin-sdk-api</artifactId> |
62 |
<version>${project.version}</version> |
63 |
</dependency> |
64 |
<dependency> |
65 |
<groupId>org.apache.maven</groupId> |
66 |
<artifactId>maven-model</artifactId> |
67 |
</dependency> |
68 |
<dependency> |
69 |
<groupId>org.springframework</groupId> |
70 |
<artifactId>spring-core</artifactId> |
71 |
</dependency> |
72 |
<dependency> |
73 |
<groupId>org.springframework</groupId> |
74 |
<artifactId>spring-context</artifactId> |
75 |
</dependency> |
76 |
<dependency> |
77 |
<groupId>org.springframework</groupId> |
78 |
<artifactId>spring-expression</artifactId> |
79 |
</dependency> |
80 |
<dependency> |
81 |
<groupId>org.springframework</groupId> |
82 |
<artifactId>spring-beans</artifactId> |
83 |
</dependency> |
84 |
<dependency> |
85 |
<groupId>org.springframework</groupId> |
86 |
<artifactId>spring-web</artifactId> |
87 |
</dependency> |
88 |
<dependency> |
89 |
<groupId>org.onehippo.cms7</groupId> |
90 |
<artifactId>hippo-repository-connector</artifactId> |
91 |
</dependency> |
92 |
|
93 |
<dependency> |
94 |
<groupId>org.eclipse.jdt</groupId> |
95 |
<artifactId>org.eclipse.jdt.core</artifactId> |
96 |
<exclusions> |
97 |
<exclusion> |
98 |
<groupId>org.eclipse.equinox</groupId> |
99 |
<artifactId>org.eclipse.equinox.app</artifactId> |
100 |
</exclusion> |
101 |
</exclusions> |
102 |
</dependency> |
103 |
<dependency> |
104 |
<groupId>commons-lang</groupId> |
105 |
<artifactId>commons-lang</artifactId> |
106 |
</dependency> |
107 |
<dependency> |
108 |
<groupId>commons-io</groupId> |
109 |
<artifactId>commons-io</artifactId> |
110 |
</dependency> |
111 |
|
112 |
<!-- TEST --> |
113 |
<dependency> |
114 |
<groupId>junit</groupId> |
115 |
<artifactId>junit</artifactId> |
116 |
</dependency> |
117 |
|
118 |
<dependency> |
119 |
<groupId>org.onehippo.cms7</groupId> |
120 |
<artifactId>hippo-repository-provider</artifactId> |
121 |
<scope>test</scope> |
122 |
</dependency> |
123 |
|
124 |
<dependency> |
125 |
<groupId>org.onehippo.cms7</groupId> |
126 |
<artifactId>hippo-repository-testutils</artifactId> |
127 |
<scope>test</scope> |
128 |
</dependency> |
129 |
|
130 |
<dependency> |
131 |
<groupId>org.springframework</groupId> |
132 |
<artifactId>spring-test</artifactId> |
133 |
</dependency> |
134 |
<dependency> |
135 |
<groupId>org.codehaus.jackson</groupId> |
136 |
<artifactId>jackson-mapper-asl</artifactId> |
137 |
<version>${jackson.version}</version> |
138 |
<scope>test</scope> |
139 |
</dependency> |
140 |
|
141 |
</dependencies> |
142 |
|
143 |
<build> |
144 |
<defaultGoal>package</defaultGoal> |
145 |
<plugins> |
146 |
<plugin> |
147 |
<groupId>org.apache.maven.plugins</groupId> |
148 |
<artifactId>maven-jar-plugin</artifactId> |
149 |
<executions> |
150 |
<execution> |
151 |
<goals> |
152 |
<goal>test-jar</goal> |
153 |
</goals> |
154 |
</execution> |
155 |
</executions> |
156 |
</plugin> |
157 |
</plugins> |
158 |
|
159 |
</build> |
160 |
|
161 |
</project> |