1 |
<?xml version="1.0"?> |
2 |
<!-- |
3 |
Copyright 2007-2015 Hippo B.V. (http://www.onehippo.com) |
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" 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 |
<parent> |
20 |
<groupId>org.onehippo.cms7</groupId> |
21 |
<artifactId>hippo-plugin-taxonomy-addon</artifactId> |
22 |
<version>2.2.1-SNAPSHOT</version> |
23 |
</parent> |
24 |
|
25 |
<name>Hippo Plugin Taxonomy Addon Frontend</name> |
26 |
<description>Hippo Plugin Taxonomy Addon Frontend</description> |
27 |
<artifactId>hippo-plugin-taxonomy-addon-frontend</artifactId> |
28 |
|
29 |
<dependencies> |
30 |
|
31 |
<dependency> |
32 |
<groupId>org.onehippo.cms7</groupId> |
33 |
<artifactId>hippo-plugin-taxonomy-api</artifactId> |
34 |
<version>${project.version}</version> |
35 |
<scope>provided</scope> |
36 |
</dependency> |
37 |
|
38 |
<dependency> |
39 |
<groupId>org.onehippo.cms7</groupId> |
40 |
<artifactId>hippo-cms-engine</artifactId> |
41 |
</dependency> |
42 |
|
43 |
<dependency> |
44 |
<groupId>org.onehippo.cms7</groupId> |
45 |
<artifactId>hippo-cms-editor-frontend</artifactId> |
46 |
</dependency> |
47 |
|
48 |
<dependency> |
49 |
<groupId>org.onehippo.cms7</groupId> |
50 |
<artifactId>hippo-cms-perspectives</artifactId> |
51 |
</dependency> |
52 |
|
53 |
<dependency> |
54 |
<groupId>org.onehippo.cms7</groupId> |
55 |
<artifactId>hippo-repository-api</artifactId> |
56 |
</dependency> |
57 |
|
58 |
<!-- test --> |
59 |
<dependency> |
60 |
<groupId>org.onehippo.cms7</groupId> |
61 |
<artifactId>hippo-cms-config</artifactId> |
62 |
<version>${hippo.cms.version}</version> |
63 |
<scope>test</scope> |
64 |
</dependency> |
65 |
<dependency> |
66 |
<groupId>org.onehippo.cms7</groupId> |
67 |
<artifactId>hippo-cms-richtext-repository</artifactId> |
68 |
<version>${hippo.cms.version}</version> |
69 |
<scope>test</scope> |
70 |
</dependency> |
71 |
<dependency> |
72 |
<groupId>org.onehippo.cms7</groupId> |
73 |
<artifactId>hippo-cms-test</artifactId> |
74 |
<version>${hippo.cms.version}</version> |
75 |
<scope>test</scope> |
76 |
</dependency> |
77 |
<dependency> |
78 |
<groupId>org.onehippo.cms7</groupId> |
79 |
<artifactId>hippo-cms-editor-repository</artifactId> |
80 |
<version>${hippo.cms.version}</version> |
81 |
<scope>test</scope> |
82 |
</dependency> |
83 |
<dependency> |
84 |
<groupId>org.onehippo.cms7</groupId> |
85 |
<artifactId>hippo-cms-editor-repository</artifactId> |
86 |
<version>${hippo.cms.version}</version> |
87 |
<type>jar</type> |
88 |
<classifier>tests</classifier> |
89 |
<scope>test</scope> |
90 |
<optional>true</optional> |
91 |
</dependency> |
92 |
|
93 |
<dependency> |
94 |
<groupId>org.onehippo.cms7</groupId> |
95 |
<artifactId>hippo-plugin-taxonomy-addon-repository</artifactId> |
96 |
<version>${project.version}</version> |
97 |
<scope>test</scope> |
98 |
</dependency> |
99 |
|
100 |
<dependency> |
101 |
<groupId>org.onehippo.cms7</groupId> |
102 |
<artifactId>hippo-repository-engine</artifactId> |
103 |
</dependency> |
104 |
<dependency> |
105 |
<groupId>org.onehippo.cms7</groupId> |
106 |
<artifactId>hippo-repository-config</artifactId> |
107 |
</dependency> |
108 |
<dependency> |
109 |
<groupId>org.onehippo.cms7</groupId> |
110 |
<artifactId>hippo-repository-workflow</artifactId> |
111 |
</dependency> |
112 |
<dependency> |
113 |
<groupId>junit</groupId> |
114 |
<artifactId>junit</artifactId> |
115 |
</dependency> |
116 |
<dependency> |
117 |
<groupId>org.onehippo.cms7</groupId> |
118 |
<artifactId>hippo-cms-api</artifactId> |
119 |
</dependency> |
120 |
|
121 |
<dependency> |
122 |
<groupId>commons-collections</groupId> |
123 |
<artifactId>commons-collections</artifactId> |
124 |
</dependency> |
125 |
|
126 |
<dependency> |
127 |
<groupId>org.easymock</groupId> |
128 |
<artifactId>easymock</artifactId> |
129 |
<scope>test</scope> |
130 |
</dependency> |
131 |
|
132 |
</dependencies> |
133 |
|
134 |
<build> |
135 |
<defaultGoal>package</defaultGoal> |
136 |
<resources> |
137 |
<resource> |
138 |
<filtering>false</filtering> |
139 |
<directory>${basedir}/src/main/java</directory> |
140 |
<includes> |
141 |
<include>**/*.html</include> |
142 |
<include>**/*.css</include> |
143 |
<include>**/*.gif</include> |
144 |
<include>**/*.png</include> |
145 |
<include>**/*.js</include> |
146 |
<include>**/*.properties</include> |
147 |
</includes> |
148 |
</resource> |
149 |
</resources> |
150 |
</build> |
151 |
|
152 |
</project> |