1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 |
<!-- |
3 |
Copyright 2007-2012 Hippo. |
4 |
|
5 |
Licensed under the Apache License, Version 2.0 (the "License"); |
6 |
you may not use this file except in compliance with the License. |
7 |
You may obtain a copy of the License at |
8 |
|
9 |
http://www.apache.org/licenses/LICENSE-2.0 |
10 |
|
11 |
Unless required by applicable law or agreed to in writing, software |
12 |
distributed under the License is distributed on an "AS IS" BASIS, |
13 |
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
14 |
See the License for the specific language governing permissions and |
15 |
limitations under the License. |
16 |
--> |
17 |
<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"> |
18 |
<modelVersion>4.0.0</modelVersion> |
19 |
|
20 |
<parent> |
21 |
<groupId>org.onehippo.jcr.console</groupId> |
22 |
<artifactId>hippo-jcr-console</artifactId> |
23 |
<version>1.01.00-SNAPSHOT</version> |
24 |
</parent> |
25 |
|
26 |
<name>Hippo JCR Console Dependencies</name> |
27 |
<description>Hippo JCR Console Application dependencies</description> |
28 |
<artifactId>hippo-jcr-console-dependencies</artifactId> |
29 |
|
30 |
<packaging>pom</packaging> |
31 |
|
32 |
<dependencies> |
33 |
<dependency> |
34 |
<groupId>org.onehippo.jcr.console</groupId> |
35 |
<artifactId>hippo-jcr-console-api</artifactId> |
36 |
</dependency> |
37 |
|
38 |
<dependency> |
39 |
<groupId>org.onehippo.jcr.console</groupId> |
40 |
<artifactId>hippo-jcr-console-engine</artifactId> |
41 |
</dependency> |
42 |
|
43 |
<dependency> |
44 |
<groupId>org.onehippo.jcr.console</groupId> |
45 |
<artifactId>hippo-jcr-console-plugins</artifactId> |
46 |
</dependency> |
47 |
|
48 |
<dependency> |
49 |
<groupId>org.onehippo.jcr.console</groupId> |
50 |
<artifactId>hippo-jcr-console-skin</artifactId> |
51 |
</dependency> |
52 |
|
53 |
<dependency> |
54 |
<groupId>org.onehippo.jcr</groupId> |
55 |
<artifactId>hippo-jcr-repository-service</artifactId> |
56 |
</dependency> |
57 |
|
58 |
<dependency> |
59 |
<groupId>javax.servlet</groupId> |
60 |
<artifactId>jstl</artifactId> |
61 |
</dependency> |
62 |
|
63 |
<dependency> |
64 |
<groupId>taglibs</groupId> |
65 |
<artifactId>standard</artifactId> |
66 |
</dependency> |
67 |
|
68 |
<!-- Spring Framework --> |
69 |
|
70 |
<dependency> |
71 |
<groupId>org.springframework</groupId> |
72 |
<artifactId>spring-core</artifactId> |
73 |
</dependency> |
74 |
|
75 |
<dependency> |
76 |
<groupId>org.springframework</groupId> |
77 |
<artifactId>spring-beans</artifactId> |
78 |
</dependency> |
79 |
|
80 |
<dependency> |
81 |
<groupId>org.springframework</groupId> |
82 |
<artifactId>spring-context</artifactId> |
83 |
</dependency> |
84 |
|
85 |
<dependency> |
86 |
<groupId>org.springframework</groupId> |
87 |
<artifactId>spring-context-support</artifactId> |
88 |
</dependency> |
89 |
|
90 |
<dependency> |
91 |
<groupId>org.springframework</groupId> |
92 |
<artifactId>spring-web</artifactId> |
93 |
</dependency> |
94 |
|
95 |
<dependency> |
96 |
<groupId>org.springframework</groupId> |
97 |
<artifactId>spring-aop</artifactId> |
98 |
</dependency> |
99 |
|
100 |
<dependency> |
101 |
<groupId>org.springframework</groupId> |
102 |
<artifactId>spring-webmvc</artifactId> |
103 |
</dependency> |
104 |
|
105 |
<dependency> |
106 |
<groupId>org.springframework</groupId> |
107 |
<artifactId>spring-jdbc</artifactId> |
108 |
</dependency> |
109 |
|
110 |
<dependency> |
111 |
<groupId>org.springframework</groupId> |
112 |
<artifactId>spring-tx</artifactId> |
113 |
</dependency> |
114 |
|
115 |
<!-- Spring Security --> |
116 |
|
117 |
<dependency> |
118 |
<groupId>org.springframework.security</groupId> |
119 |
<artifactId>spring-security-core</artifactId> |
120 |
</dependency> |
121 |
|
122 |
<dependency> |
123 |
<groupId>org.springframework.security</groupId> |
124 |
<artifactId>spring-security-web</artifactId> |
125 |
</dependency> |
126 |
|
127 |
<dependency> |
128 |
<groupId>org.springframework.security</groupId> |
129 |
<artifactId>spring-security-config</artifactId> |
130 |
</dependency> |
131 |
|
132 |
<dependency> |
133 |
<groupId>org.springframework.security</groupId> |
134 |
<artifactId>spring-security-taglibs</artifactId> |
135 |
</dependency> |
136 |
|
137 |
<!-- jcr dependency *must* be provided by the container through a shared classpath (e.g. $TOMCAT/lib) --> |
138 |
<dependency> |
139 |
<groupId>javax.jcr</groupId> |
140 |
<artifactId>jcr</artifactId> |
141 |
<scope>provided</scope> |
142 |
</dependency> |
143 |
|
144 |
<!-- following dependencies are expected to be provided by the container through a shared classpath (e.g. $TOMCAT/lib) |
145 |
or alternatively can be bundled with the application (only when they are *not* on a shared classpath) --> |
146 |
<dependency> |
147 |
<groupId>org.slf4j</groupId> |
148 |
<artifactId>slf4j-api</artifactId> |
149 |
<scope>provided</scope> |
150 |
</dependency> |
151 |
<dependency> |
152 |
<groupId>log4j</groupId> |
153 |
<artifactId>log4j</artifactId> |
154 |
<scope>provided</scope> |
155 |
</dependency> |
156 |
<dependency> |
157 |
<groupId>org.slf4j</groupId> |
158 |
<artifactId>slf4j-log4j12</artifactId> |
159 |
<scope>provided</scope> |
160 |
</dependency> |
161 |
<dependency> |
162 |
<groupId>org.slf4j</groupId> |
163 |
<artifactId>jcl-over-slf4j</artifactId> |
164 |
<scope>provided</scope> |
165 |
</dependency> |
166 |
|
167 |
</dependencies> |
168 |
|
169 |
</project> |