1 |
<?xml version="1.0" encoding="UTF-8"?><!-- |
2 |
Copyright 2008-2013 Hippo B.V. (http://www.onehippo.com) |
3 |
|
4 |
Licensed under the Apache License, Version 2.0 (the "License"); |
5 |
you may not use this file except in compliance with the License. |
6 |
You may obtain a copy of the License at |
7 |
|
8 |
http://www.apache.org/licenses/LICENSE-2.0 |
9 |
|
10 |
Unless required by applicable law or agreed to in writing, software |
11 |
distributed under the License is distributed on an "AS IS" BASIS, |
12 |
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
13 |
See the License for the specific language governing permissions and |
14 |
limitations under the License. |
15 |
--> |
16 |
<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"> |
17 |
<modelVersion>4.0.0</modelVersion> |
18 |
|
19 |
<name>YUI 2.xx sources/dependencies resolver</name> |
20 |
<description>Yahoo! User Interface Library (YUI) v2.xx sources/dependencies resolver</description> |
21 |
<groupId>org.onehippo.yui</groupId> |
22 |
<artifactId>yui-2.xx-sources</artifactId> |
23 |
<version>1.01.11</version> |
24 |
|
25 |
<packaging>jar</packaging> |
26 |
|
27 |
<inceptionYear>2008</inceptionYear> |
28 |
|
29 |
<organization> |
30 |
<name>Hippo B.V. (http://www.onehippo.com)</name> |
31 |
<url>http://www.onehippo.com</url> |
32 |
</organization> |
33 |
|
34 |
<scm> |
35 |
<connection>scm:svn:http://svn.onehippo.org/repos/hippo/experimental/forks/yui-2.5.2/tags/yui-2.xx-sources-1.01.11</connection> |
36 |
<developerConnection>scm:svn:https://svn.onehippo.org/repos/hippo/experimental/forks/yui-2.5.2/tags/yui-2.xx-sources-1.01.11</developerConnection> |
37 |
<url>http://svn.onehippo.org/repos/hippo/experimental/forks/yui-2.5.2/tags/yui-2.xx-sources-1.01.11</url> |
38 |
</scm> |
39 |
|
40 |
<!-- Where to publish the project data --> |
41 |
<distributionManagement> |
42 |
<repository> |
43 |
<name>Hippo Maven 2 Repository</name> |
44 |
<id>hippo-maven2</id> |
45 |
<url>https://maven.onehippo.com/content/repositories/releases/</url> |
46 |
<uniqueVersion>false</uniqueVersion> |
47 |
</repository> |
48 |
<snapshotRepository> |
49 |
<id>hippo-maven2-snapshots</id> |
50 |
<name>Hippo Maven 2 Snapshots Repository</name> |
51 |
<url>https://maven.onehippo.com/content/repositories/snapshots/</url> |
52 |
<uniqueVersion>false</uniqueVersion> |
53 |
</snapshotRepository> |
54 |
</distributionManagement> |
55 |
|
56 |
<pluginRepositories> |
57 |
<pluginRepository> |
58 |
<id>hippo</id> |
59 |
<name>Hippo maven 2 repository.</name> |
60 |
<url>http://maven.onehippo.com/maven2/</url> |
61 |
<snapshots> |
62 |
<enabled>false</enabled> |
63 |
</snapshots> |
64 |
<releases> |
65 |
<updatePolicy>never</updatePolicy> |
66 |
</releases> |
67 |
<layout>default</layout> |
68 |
</pluginRepository> |
69 |
</pluginRepositories> |
70 |
|
71 |
<properties> |
72 |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
73 |
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
74 |
|
75 |
<maven.plugin.rat.version>0.9.RAT125</maven.plugin.rat.version> |
76 |
<maven.plugin.release.version>2.3.2</maven.plugin.release.version> |
77 |
<maven.plugin.remote-resources.version>1.4</maven.plugin.remote-resources.version> |
78 |
|
79 |
<org.slf4j.version>1.5.8</org.slf4j.version> |
80 |
<commons-lang.version>2.1</commons-lang.version> |
81 |
<junit.version>4.4</junit.version> |
82 |
</properties> |
83 |
|
84 |
<repositories> |
85 |
<repository> |
86 |
<id>hippo</id> |
87 |
<name>Hippo Maven 2</name> |
88 |
<url>http://maven.onehippo.com/maven2/</url> |
89 |
<snapshots> |
90 |
<enabled>false</enabled> |
91 |
</snapshots> |
92 |
<releases> |
93 |
<updatePolicy>never</updatePolicy> |
94 |
</releases> |
95 |
</repository> |
96 |
</repositories> |
97 |
|
98 |
<dependencies> |
99 |
|
100 |
<dependency> |
101 |
<groupId>org.slf4j</groupId> |
102 |
<artifactId>slf4j-api</artifactId> |
103 |
<version>${org.slf4j.version}</version> |
104 |
<scope>provided</scope> |
105 |
</dependency> |
106 |
|
107 |
<dependency> |
108 |
<groupId>org.slf4j</groupId> |
109 |
<artifactId>slf4j-log4j12</artifactId> |
110 |
<version>${org.slf4j.version}</version> |
111 |
<scope>test</scope> |
112 |
</dependency> |
113 |
|
114 |
<dependency> |
115 |
<groupId>commons-lang</groupId> |
116 |
<artifactId>commons-lang</artifactId> |
117 |
<version>${commons-lang.version}</version> |
118 |
</dependency> |
119 |
|
120 |
<dependency> |
121 |
<groupId>junit</groupId> |
122 |
<artifactId>junit</artifactId> |
123 |
<scope>test</scope> |
124 |
<version>${junit.version}</version> |
125 |
</dependency> |
126 |
|
127 |
</dependencies> |
128 |
|
129 |
<build> |
130 |
<defaultGoal>package</defaultGoal> |
131 |
<resources> |
132 |
<resource> |
133 |
<filtering>false</filtering> |
134 |
<directory>${basedir}/src/main/java</directory> |
135 |
<includes> |
136 |
<include>**/*.html</include> |
137 |
<include>**/*.css</include> |
138 |
<include>**/*.js</include> |
139 |
<include>**/*.gif</include> |
140 |
<include>**/*.png</include> |
141 |
<include>**/*.jpg</include> |
142 |
</includes> |
143 |
</resource> |
144 |
</resources> |
145 |
<testResources> |
146 |
<testResource> |
147 |
<directory>${basedir}/src/test/java</directory> |
148 |
</testResource> |
149 |
</testResources> |
150 |
<plugins> |
151 |
<plugin> |
152 |
<groupId>org.apache.maven.plugins</groupId> |
153 |
<artifactId>maven-compiler-plugin</artifactId> |
154 |
<configuration> |
155 |
<source>1.6</source> |
156 |
<target>1.6</target> |
157 |
</configuration> |
158 |
</plugin> |
159 |
<plugin> |
160 |
<inherited>true</inherited> |
161 |
<artifactId>maven-source-plugin</artifactId> |
162 |
<executions> |
163 |
<execution> |
164 |
<id>attach-sources</id> |
165 |
<goals> |
166 |
<goal>jar</goal> |
167 |
</goals> |
168 |
</execution> |
169 |
</executions> |
170 |
</plugin> |
171 |
<plugin> |
172 |
<inherited>true</inherited> |
173 |
<groupId>org.apache.maven.plugins</groupId> |
174 |
<artifactId>maven-release-plugin</artifactId> |
175 |
<version>${maven.plugin.release.version}</version> |
176 |
<configuration> |
177 |
<preparationGoals>clean</preparationGoals> |
178 |
</configuration> |
179 |
</plugin> |
180 |
<plugin> |
181 |
<groupId>org.apache.maven.plugins</groupId> |
182 |
<artifactId>maven-remote-resources-plugin</artifactId> |
183 |
<version>${maven.plugin.remote-resources.version}</version> |
184 |
<inherited>true</inherited> |
185 |
<executions> |
186 |
<execution> |
187 |
<goals> |
188 |
<goal>process</goal> |
189 |
</goals> |
190 |
<configuration> |
191 |
<resourceBundles> |
192 |
<resourceBundle>org.onehippo.cms7:hippo-cms7-legal-resources:1</resourceBundle> |
193 |
</resourceBundles> |
194 |
</configuration> |
195 |
</execution> |
196 |
</executions> |
197 |
</plugin> |
198 |
</plugins> |
199 |
<extensions> |
200 |
<extension> |
201 |
<groupId>org.apache.maven.wagon</groupId> |
202 |
<artifactId>wagon-ftp</artifactId> |
203 |
<version>1.0-beta-2</version> |
204 |
</extension> |
205 |
</extensions> |
206 |
</build> |
207 |
|
208 |
<profiles> |
209 |
<profile> |
210 |
<id>pedantic</id> |
211 |
<build> |
212 |
<plugins> |
213 |
<plugin> |
214 |
<groupId>org.apache.rat</groupId> |
215 |
<artifactId>apache-rat-plugin</artifactId> |
216 |
<version>${maven.plugin.rat.version}</version> |
217 |
<executions> |
218 |
<execution> |
219 |
<phase>validate</phase> |
220 |
<goals> |
221 |
<goal>check</goal> |
222 |
</goals> |
223 |
</execution> |
224 |
</executions> |
225 |
<configuration> |
226 |
<addDefaultLicenseMatchers>false</addDefaultLicenseMatchers> |
227 |
<excludeSubProjects>false</excludeSubProjects> |
228 |
<licenses> |
229 |
<license implementation="org.apache.rat.analysis.license.AppliedApacheSoftwareLicense20"> |
230 |
<copyrightOwner>Hippo B\.V\. \(http://www\.onehippo\.com\)</copyrightOwner> |
231 |
</license> |
232 |
</licenses> |
233 |
<excludes> |
234 |
<!-- exclude external sources --> |
235 |
<exclude>src/main/java/org/onehippo/yui/inc/2.9.0/**</exclude> |
236 |
<exclude>src/test/java/org/onehippo/yui/inc/1.0.0/**</exclude> |
237 |
</excludes> |
238 |
</configuration> |
239 |
</plugin> |
240 |
</plugins> |
241 |
</build> |
242 |
</profile> |
243 |
</profiles> |
244 |
|
245 |
</project> |