Revision: | 58510 |
Committed: | Sat Jan 30 12:37:09 2016 UTC (4 years, 11 months ago) by abanck |
Content type: | text/plain |
File size: | 3747 byte(s) |
Log Message: | CMS-9907: Update project for release 10.2.0 |
# | Content |
---|---|
1 | <?xml version="1.0"?> |
2 | <!-- |
3 | Copyright 2013-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" 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/maven-v4_0_0.xsd"> |
18 | <modelVersion>4.0.0</modelVersion> |
19 | |
20 | <parent> |
21 | <groupId>org.onehippo.cms7</groupId> |
22 | <artifactId>hippo-cms7-project</artifactId> |
23 | <version>27.5</version> |
24 | </parent> |
25 | |
26 | <inceptionYear>2013</inceptionYear> |
27 | |
28 | <groupId>org.onehippo.cms7</groupId> |
29 | <artifactId>hippo-plugin-resourcebundle-editor</artifactId> |
30 | <name>Hippo Plugin Resourcebundle Editor</name> |
31 | <version>2.2.0-SNAPSHOT</version> |
32 | |
33 | <scm> |
34 | <connection>scm:svn:https://svn.onehippo.org/repos/hippo/hippo-cms7/plugins/resourcebundle-editor/branches/hippo-plugin-resourcebundle-editor-2.2.x</connection> |
35 | <developerConnection>scm:svn:https://svn.onehippo.org/repos/hippo/hippo-cms7/plugins/resourcebundle-editor/branches/hippo-plugin-resourcebundle-editor-2.2.x</developerConnection> |
36 | <url>https://svn.onehippo.org/repos/hippo/hippo-cms7/plugins/resourcebundle-editor/branches/hippo-plugin-resourcebundle-editor-2.2.x</url> |
37 | </scm> |
38 | |
39 | <properties> |
40 | <hippo.cms.version>3.2.0</hippo.cms.version> |
41 | </properties> |
42 | |
43 | <repositories> |
44 | <repository> |
45 | <id>hippo</id> |
46 | <name>Hippo Maven 2</name> |
47 | <url>https://maven.onehippo.com/maven2/</url> |
48 | <snapshots> |
49 | <enabled>false</enabled> |
50 | </snapshots> |
51 | <releases> |
52 | <updatePolicy>never</updatePolicy> |
53 | </releases> |
54 | </repository> |
55 | </repositories> |
56 | |
57 | |
58 | <issueManagement> |
59 | <system>Jira</system> |
60 | <url>https://issues.onehippo.com/browse/HIPPLUG/component/15446</url> |
61 | </issueManagement> |
62 | |
63 | <dependencies> |
64 | <dependency> |
65 | <groupId>org.onehippo.cms7</groupId> |
66 | <artifactId>hippo-cms-api</artifactId> |
67 | <version>${hippo.cms.version}</version> |
68 | <scope>provided</scope> |
69 | </dependency> |
70 | </dependencies> |
71 | |
72 | <build> |
73 | <defaultGoal>package</defaultGoal> |
74 | <resources> |
75 | <resource> |
76 | <filtering>false</filtering> |
77 | <directory>${basedir}/src/main/java</directory> |
78 | <includes> |
79 | <include>**/*.html</include> |
80 | <include>**/*.css</include> |
81 | <include>**/*.png</include> |
82 | <include>**/*.properties</include> |
83 | </includes> |
84 | </resource> |
85 | <resource> |
86 | <filtering>false</filtering> |
87 | <directory>${basedir}/src/main/resources</directory> |
88 | <includes> |
89 | <include>**/*.xml</include> |
90 | </includes> |
91 | </resource> |
92 | </resources> |
93 | </build> |
94 | |
95 | <profiles> |
96 | <profile> |
97 | <id>pedantic</id> |
98 | <build> |
99 | <plugins> |
100 | <plugin> |
101 | <groupId>org.apache.rat</groupId> |
102 | <artifactId>apache-rat-plugin</artifactId> |
103 | <inherited>false</inherited> |
104 | <configuration> |
105 | <excludes combine.children="append"> |
106 | <!-- repository content XML --> |
107 | <exclude>src/main/resources/*.xml</exclude> |
108 | </excludes> |
109 | </configuration> |
110 | </plugin> |
111 | </plugins> |
112 | </build> |
113 | </profile> |
114 | </profiles> |
115 | |
116 | </project> |
Name | Value |
---|---|
svn:eol-style | native |
svn:keywords | Id |
svn:mime-type | text/plain |