Revision: | 58491 |
Committed: | Sat Jan 30 11:37:05 2016 UTC (6 years, 6 months ago) by abanck |
Content type: | text/plain |
File size: | 5089 byte(s) |
Log Message: | CMS-9907: Update project for release 10.2.0 |
# | Content |
---|---|
1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | <!-- |
3 | Copyright 2010-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/xsd/maven-4.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 | <artifactId>hippo-plugin-dashboard-document-wizard</artifactId> |
27 | <version>2.2.0-SNAPSHOT</version> |
28 | <packaging>jar</packaging> |
29 | |
30 | <inceptionYear>2010</inceptionYear> |
31 | |
32 | <name>Hippo Plugin Dashboard Document Wizard</name> |
33 | <description> |
34 | The ${project.name} makes it possible to easily create dashboard shortcuts |
35 | that allow the user to create new documents from the CMS dashboard. The shortcut opens a wizard dialog |
36 | where the document name can be entered. The folder where the document will be stored can be determined |
37 | by supplying a date or a value from a list. Version ${project.version}. |
38 | </description> |
39 | |
40 | <scm> |
41 | <connection>scm:svn:https://svn.onehippo.org/repos/hippo/hippo-cms7/plugins/dashboard-document-wizard/branches/hippo-plugin-dashboard-document-wizard-2.2.x</connection> |
42 | <developerConnection>scm:svn:https://svn.onehippo.org/repos/hippo/hippo-cms7/plugins/dashboard-document-wizard/branches/hippo-plugin-dashboard-document-wizard-2.2.x</developerConnection> |
43 | <url>https://svn.onehippo.org/repos/hippo/hippo-cms7/plugins/dashboard-document-wizard/branches/hippo-plugin-dashboard-document-wizard-2.2.x</url> |
44 | </scm> |
45 | |
46 | <issueManagement> |
47 | <system>Jira Hippo Plugins</system> |
48 | <url>https://issues.onehippo.com/browse/HIPPLUG/component/11940</url> |
49 | </issueManagement> |
50 | |
51 | <properties> |
52 | <hippo.repository.version>3.2.0</hippo.repository.version> |
53 | <hippo.cms.version>3.2.0</hippo.cms.version> |
54 | <hippo.plugins.selections.version>3.2.0-rc-1</hippo.plugins.selections.version> |
55 | |
56 | <testng.version>6.0.1</testng.version> |
57 | |
58 | <sonar.l10n.locales>nl,fr,it,de</sonar.l10n.locales> |
59 | </properties> |
60 | |
61 | <repositories> |
62 | <repository> |
63 | <id>hippo</id> |
64 | <name>Hippo Maven 2</name> |
65 | <url>https://maven.onehippo.com/maven2/</url> |
66 | <snapshots> |
67 | <enabled>false</enabled> |
68 | </snapshots> |
69 | <releases> |
70 | <updatePolicy>never</updatePolicy> |
71 | </releases> |
72 | </repository> |
73 | </repositories> |
74 | |
75 | <dependencies> |
76 | <dependency> |
77 | <groupId>org.onehippo.cms7</groupId> |
78 | <artifactId>hippo-cms-api</artifactId> |
79 | <version>${hippo.cms.version}</version> |
80 | <scope>provided</scope> |
81 | </dependency> |
82 | |
83 | <dependency> |
84 | <groupId>org.onehippo.cms7</groupId> |
85 | <artifactId>hippo-repository-api</artifactId> |
86 | <version>${hippo.repository.version}</version> |
87 | <scope>provided</scope> |
88 | </dependency> |
89 | |
90 | <dependency> |
91 | <groupId>org.onehippo.cms7</groupId> |
92 | <artifactId>hippo-repository-builtin</artifactId> |
93 | <version>${hippo.repository.version}</version> |
94 | <scope>provided</scope> |
95 | </dependency> |
96 | |
97 | <dependency> |
98 | <groupId>org.onehippo.cms7</groupId> |
99 | <artifactId>hippo-plugin-selections-addon-repository</artifactId> |
100 | <version>${hippo.plugins.selections.version}</version> |
101 | <scope>runtime</scope> |
102 | </dependency> |
103 | |
104 | <dependency> |
105 | <groupId>org.onehippo.cms7</groupId> |
106 | <artifactId>hippo-plugin-selections-addon-cms</artifactId> |
107 | <version>${hippo.plugins.selections.version}</version> |
108 | <scope>provided</scope> |
109 | </dependency> |
110 | |
111 | <dependency> |
112 | <groupId>org.testng</groupId> |
113 | <artifactId>testng</artifactId> |
114 | <version>${testng.version}</version> |
115 | <scope>test</scope> |
116 | </dependency> |
117 | |
118 | </dependencies> |
119 | |
120 | <build> |
121 | <defaultGoal>install</defaultGoal> |
122 | <resources> |
123 | <resource> |
124 | <filtering>false</filtering> |
125 | <directory>${basedir}/src/main/java</directory> |
126 | <includes> |
127 | <include>**/*.png</include> |
128 | <include>**/*.html</include> |
129 | <include>**/*.css</include> |
130 | <include>**/*.properties</include> |
131 | </includes> |
132 | </resource> |
133 | </resources> |
134 | </build> |
135 | |
136 | <profiles> |
137 | <profile> |
138 | <id>pedantic</id> |
139 | <build> |
140 | <plugins> |
141 | <plugin> |
142 | <groupId>org.apache.rat</groupId> |
143 | <artifactId>apache-rat-plugin</artifactId> |
144 | <inherited>false</inherited> |
145 | </plugin> |
146 | </plugins> |
147 | </build> |
148 | </profile> |
149 | |
150 | </profiles> |
151 | |
152 | </project> |
Name | Value |
---|---|
svn:eol-style | native |
svn:keywords | Id |
svn:mime-type | text/plain |