1 |
<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"> |
2 |
<!-- |
3 |
Copyright 2008-2016 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 |
<modelVersion>4.0.0</modelVersion> |
18 |
|
19 |
<parent> |
20 |
<groupId>org.onehippo.cms7</groupId> |
21 |
<artifactId>hippo-cms7-project</artifactId> |
22 |
<version>27.5</version> |
23 |
</parent> |
24 |
|
25 |
<name>Hippo Plugin Gallery Picker</name> |
26 |
<description>Hippo Plugin Gallery Picker</description> |
27 |
<artifactId>hippo-plugin-gallerypicker</artifactId> |
28 |
<packaging>jar</packaging> |
29 |
<version>2.2.0</version> |
30 |
|
31 |
<inceptionYear>2008</inceptionYear> |
32 |
|
33 |
<scm> |
34 |
<connection>scm:svn:https://svn.onehippo.org/repos/hippo/hippo-cms7/plugins/gallerypicker/tags/hippo-plugin-gallerypicker-2.2.0</connection> |
35 |
<developerConnection>scm:svn:https://svn.onehippo.org/repos/hippo/hippo-cms7/plugins/gallerypicker/tags/hippo-plugin-gallerypicker-2.2.0</developerConnection> |
36 |
<url>https://svn.onehippo.org/repos/hippo/hippo-cms7/plugins/gallerypicker/tags/hippo-plugin-gallerypicker-2.2.0</url> |
37 |
</scm> |
38 |
|
39 |
<properties> |
40 |
<hippo.repository.version>3.2.0</hippo.repository.version> |
41 |
<hippo.cms.version>3.2.0</hippo.cms.version> |
42 |
|
43 |
<lib.commons-lang.version>2.6</lib.commons-lang.version> |
44 |
<lib.easymock.version>2.4</lib.easymock.version> |
45 |
|
46 |
<sonar.l10n.locales>nl,fr,it,de</sonar.l10n.locales> |
47 |
</properties> |
48 |
|
49 |
<repositories> |
50 |
<repository> |
51 |
<id>hippo</id> |
52 |
<name>Hippo Maven 2</name> |
53 |
<url>https://maven.onehippo.com/maven2/</url> |
54 |
<snapshots> |
55 |
<enabled>false</enabled> |
56 |
</snapshots> |
57 |
<releases> |
58 |
<updatePolicy>never</updatePolicy> |
59 |
</releases> |
60 |
</repository> |
61 |
</repositories> |
62 |
|
63 |
<issueManagement> |
64 |
<system>Jira</system> |
65 |
<url>https://issues.onehippo.com/browse/HIPPLUG/component/10855</url> |
66 |
</issueManagement> |
67 |
|
68 |
<dependencies> |
69 |
|
70 |
<!-- These dependencies are needed by normal front-end plugins, but should be flagged differenty --> |
71 |
<dependency> |
72 |
<groupId>org.onehippo.cms7</groupId> |
73 |
<artifactId>hippo-repository-api</artifactId> |
74 |
<version>${hippo.repository.version}</version> |
75 |
<scope>provided</scope> |
76 |
</dependency> |
77 |
<dependency> |
78 |
<groupId>org.onehippo.cms7</groupId> |
79 |
<artifactId>hippo-cms-engine</artifactId> |
80 |
<version>${hippo.cms.version}</version> |
81 |
<scope>provided</scope> |
82 |
</dependency> |
83 |
<dependency> |
84 |
<groupId>org.onehippo.cms7</groupId> |
85 |
<artifactId>hippo-cms-editor-frontend</artifactId> |
86 |
<version>${hippo.cms.version}</version> |
87 |
<scope>provided</scope> |
88 |
</dependency> |
89 |
|
90 |
<dependency> |
91 |
<groupId>org.onehippo.cms7</groupId> |
92 |
<artifactId>hippo-cms-gallery-frontend</artifactId> |
93 |
<version>${hippo.cms.version}</version> |
94 |
<scope>provided</scope> |
95 |
</dependency> |
96 |
|
97 |
<dependency> |
98 |
<groupId>org.onehippo.cms7</groupId> |
99 |
<artifactId>hippo-repository-builtin</artifactId> |
100 |
<version>${hippo.repository.version}</version> |
101 |
<scope>provided</scope> |
102 |
</dependency> |
103 |
|
104 |
<!-- test dependencies --> |
105 |
<dependency> |
106 |
<groupId>junit</groupId> |
107 |
<artifactId>junit</artifactId> |
108 |
<version>4.4</version> |
109 |
<scope>test</scope> |
110 |
</dependency> |
111 |
<dependency> |
112 |
<groupId>org.easymock</groupId> |
113 |
<artifactId>easymockclassextension</artifactId> |
114 |
<version>2.4</version> |
115 |
<scope>test</scope> |
116 |
</dependency> |
117 |
<dependency> |
118 |
<groupId>org.easymock</groupId> |
119 |
<artifactId>easymock</artifactId> |
120 |
<version>${lib.easymock.version}</version> |
121 |
<scope>test</scope> |
122 |
</dependency> |
123 |
|
124 |
<dependency> |
125 |
<groupId>commons-lang</groupId> |
126 |
<artifactId>commons-lang</artifactId> |
127 |
<version>${lib.commons-lang.version}</version> |
128 |
<scope>provided</scope> |
129 |
</dependency> |
130 |
|
131 |
</dependencies> |
132 |
|
133 |
<build> |
134 |
|
135 |
<defaultGoal>package</defaultGoal> |
136 |
<resources> |
137 |
<resource> |
138 |
<filtering>false</filtering> |
139 |
<directory>${basedir}/src/main/java</directory> |
140 |
<includes> |
141 |
<include>**/*.properties</include> |
142 |
<include>**/*.html</include> |
143 |
<include>**/*.png</include> |
144 |
<include>**/*.gif</include> |
145 |
</includes> |
146 |
</resource> |
147 |
<resource> |
148 |
<filtering>false</filtering> |
149 |
<directory>${basedir}/src/main/resources</directory> |
150 |
<includes> |
151 |
<include>**/*.css</include> |
152 |
<include>**/*.cnd</include> |
153 |
<include>**/*.xml</include> |
154 |
</includes> |
155 |
</resource> |
156 |
</resources> |
157 |
</build> |
158 |
|
159 |
<profiles> |
160 |
<profile> |
161 |
<id>pedantic</id> |
162 |
<build> |
163 |
<plugins> |
164 |
<plugin> |
165 |
<groupId>org.apache.rat</groupId> |
166 |
<artifactId>apache-rat-plugin</artifactId> |
167 |
<inherited>false</inherited> |
168 |
<configuration> |
169 |
<excludes combine.children="append"> |
170 |
<!-- ignore repository content XML --> |
171 |
<exclude>src/main/resources/*.xml</exclude> |
172 |
</excludes> |
173 |
</configuration> |
174 |
</plugin> |
175 |
</plugins> |
176 |
</build> |
177 |
</profile> |
178 |
</profiles> |
179 |
|
180 |
</project> |