1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 |
<!-- |
3 |
Copyright 2011 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" |
13 |
BASIS, 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" |
18 |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
19 |
<modelVersion>4.0.0</modelVersion> |
20 |
<parent> |
21 |
<groupId>org.onehippo.forge.socialsharing</groupId> |
22 |
<artifactId>socialsharing</artifactId> |
23 |
<version>1.01.00-SNAPSHOT</version> |
24 |
<relativePath>../pom.xml</relativePath> |
25 |
</parent> |
26 |
|
27 |
<groupId>org.onehippo.forge.socialsharing</groupId> |
28 |
<artifactId>socialsharing-site</artifactId> |
29 |
<name>Social Media Sharing - Site</name> |
30 |
<packaging>jar</packaging> |
31 |
|
32 |
<dependencies> |
33 |
<dependency> |
34 |
<groupId>javax.servlet</groupId> |
35 |
<artifactId>servlet-api</artifactId> |
36 |
<scope>provided</scope> |
37 |
</dependency> |
38 |
|
39 |
<dependency> |
40 |
<groupId>org.onehippo.cms7.hst.dependencies</groupId> |
41 |
<artifactId>hst-shared-dependencies</artifactId> |
42 |
<type>pom</type> |
43 |
</dependency> |
44 |
<dependency> |
45 |
<groupId>org.onehippo.cms7.hst.dependencies</groupId> |
46 |
<artifactId>hst-server-dependencies</artifactId> |
47 |
<type>pom</type> |
48 |
</dependency> |
49 |
|
50 |
<dependency> |
51 |
<groupId>org.onehippo.cms7.hst.dependencies</groupId> |
52 |
<artifactId>hst-spring-dependencies</artifactId> |
53 |
<type>pom</type> |
54 |
</dependency> |
55 |
|
56 |
<dependency> |
57 |
<groupId>org.onehippo.cms7.hst.dependencies</groupId> |
58 |
<artifactId>hst-client-dependencies</artifactId> |
59 |
<type>pom</type> |
60 |
</dependency> |
61 |
|
62 |
<dependency> |
63 |
<groupId>org.springframework.webflow</groupId> |
64 |
<artifactId>org.springframework.js</artifactId> |
65 |
</dependency> |
66 |
<dependency> |
67 |
<groupId>org.onehippo.cms7.hst.components</groupId> |
68 |
<artifactId>hst-jaxrs</artifactId> |
69 |
</dependency> |
70 |
<dependency> |
71 |
<groupId>org.onehippo.cms7.hst.client-modules</groupId> |
72 |
<artifactId>hst-page-composer</artifactId> |
73 |
</dependency> |
74 |
|
75 |
<dependency> |
76 |
<groupId>net.fortuna.ical4j</groupId> |
77 |
<artifactId>ical4j</artifactId> |
78 |
<version>1.0</version> |
79 |
</dependency> |
80 |
|
81 |
<dependency> |
82 |
<groupId>org.apache.commons</groupId> |
83 |
<artifactId>commons-email</artifactId> |
84 |
<version>1.2</version> |
85 |
</dependency> |
86 |
|
87 |
<dependency> |
88 |
<groupId>javax.mail</groupId> |
89 |
<artifactId>mail</artifactId> |
90 |
</dependency> |
91 |
|
92 |
<dependency> |
93 |
<groupId>javax.activation</groupId> |
94 |
<artifactId>activation</artifactId> |
95 |
</dependency> |
96 |
|
97 |
<dependency> |
98 |
<groupId>junit</groupId> |
99 |
<artifactId>junit</artifactId> |
100 |
</dependency> |
101 |
|
102 |
<dependency> |
103 |
<groupId>org.slf4j</groupId> |
104 |
<artifactId>slf4j-api</artifactId> |
105 |
</dependency> |
106 |
|
107 |
<dependency> |
108 |
<groupId>org.slf4j</groupId> |
109 |
<artifactId>jcl-over-slf4j</artifactId> |
110 |
</dependency> |
111 |
|
112 |
<dependency> |
113 |
<groupId>org.slf4j</groupId> |
114 |
<artifactId>slf4j-log4j12</artifactId> |
115 |
</dependency> |
116 |
|
117 |
</dependencies> |
118 |
|
119 |
</project> |