1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 |
<!-- |
3 |
Copyright 2010-2013 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" 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/xsd/maven-4.0.0.xsd"> |
18 |
<parent> |
19 |
<artifactId>hippogogreen</artifactId> |
20 |
<groupId>com.onehippo.gogreen</groupId> |
21 |
<version>3.10.00-restyling-SNAPSHOT</version> |
22 |
</parent> |
23 |
<modelVersion>4.0.0</modelVersion> |
24 |
|
25 |
<groupId>com.onehippo.gogreen</groupId> |
26 |
<name>Hippo Go Green Rating Plugin</name> |
27 |
<artifactId>hippogogreen-rating-plugin</artifactId> |
28 |
<packaging>jar</packaging> |
29 |
|
30 |
<dependencies> |
31 |
|
32 |
<dependency> |
33 |
<groupId>org.onehippo.cms7</groupId> |
34 |
<artifactId>hippo-package-cms-dependencies</artifactId> |
35 |
<scope>provided</scope> |
36 |
<type>pom</type> |
37 |
<exclusions> |
38 |
<exclusion> |
39 |
<artifactId>rome</artifactId> |
40 |
<groupId>rome</groupId> |
41 |
</exclusion> |
42 |
</exclusions> |
43 |
</dependency> |
44 |
|
45 |
</dependencies> |
46 |
|
47 |
<build> |
48 |
<defaultGoal>package</defaultGoal> |
49 |
<resources> |
50 |
<resource> |
51 |
<filtering>false</filtering> |
52 |
<directory>${basedir}/src/main/java</directory> |
53 |
<includes> |
54 |
<include>**/*.html</include> |
55 |
<include>**/*.css</include> |
56 |
<include>**/*.png</include> |
57 |
<include>**/*.gif</include> |
58 |
<include>**/*.js</include> |
59 |
<include>**/*.properties</include> |
60 |
</includes> |
61 |
</resource> |
62 |
<resource> |
63 |
<filtering>false</filtering> |
64 |
<directory>${basedir}/src/etc</directory> |
65 |
<includes> |
66 |
<include>**/*.txt</include> |
67 |
</includes> |
68 |
</resource> |
69 |
<resource> |
70 |
<filtering>false</filtering> |
71 |
<directory>${basedir}/src/main/resources</directory> |
72 |
<includes> |
73 |
<include>**/*.cnd</include> |
74 |
<include>**/*.xml</include> |
75 |
</includes> |
76 |
</resource> |
77 |
</resources> |
78 |
</build> |
79 |
|
80 |
</project> |