Revision: | 58515 |
Committed: | Sat Jan 30 12:40:17 2016 UTC (5 years, 2 months ago) by abanck |
Content type: | text/plain |
File size: | 4647 byte(s) |
Log Message: | CMS-9907: prepare release hippo-plugin-robotstxt-2.2.0 |
# | Content |
---|---|
1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | <!-- |
3 | Copyright 2009-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 | <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 | <name>Hippo Plugin Robots.txt Generator</name> |
27 | <description>Hippo Plugin Robots.txt Generator</description> |
28 | <artifactId>hippo-plugin-robotstxt</artifactId> |
29 | <version>2.2.0</version> |
30 | <packaging>pom</packaging> |
31 | |
32 | <inceptionYear>2009</inceptionYear> |
33 | |
34 | <scm> |
35 | <connection>scm:svn:https://svn.onehippo.org/repos/hippo/hippo-cms7/plugins/robotstxt/tags/hippo-plugin-robotstxt-2.2.0</connection> |
36 | <developerConnection>scm:svn:https://svn.onehippo.org/repos/hippo/hippo-cms7/plugins/robotstxt/tags/hippo-plugin-robotstxt-2.2.0</developerConnection> |
37 | <url>https://svn.onehippo.org/repos/hippo/hippo-cms7/plugins/robotstxt/tags/hippo-plugin-robotstxt-2.2.0</url> |
38 | </scm> |
39 | |
40 | <properties> |
41 | <!-- use root project name for all project modules NOTICE files, should be the same as in the root NOTICE file --> |
42 | <notice.project.name>Hippo Plugin Robots.txt Generator</notice.project.name> |
43 | <hippo.hst.version>3.2.0</hippo.hst.version> |
44 | <hippo.repository.version>3.2.0</hippo.repository.version> |
45 | <taglibs.version>1.1.2</taglibs.version> |
46 | </properties> |
47 | |
48 | <repositories> |
49 | <repository> |
50 | <id>hippo</id> |
51 | <name>Hippo Maven 2</name> |
52 | <url>https://maven.onehippo.com/maven2/</url> |
53 | <snapshots> |
54 | <enabled>false</enabled> |
55 | </snapshots> |
56 | <releases> |
57 | <updatePolicy>never</updatePolicy> |
58 | </releases> |
59 | </repository> |
60 | </repositories> |
61 | |
62 | <issueManagement> |
63 | <system>Jira</system> |
64 | <url>https://issues.onehippo.com/browse/HIPPLUG/component/12847</url> |
65 | </issueManagement> |
66 | |
67 | <dependencyManagement> |
68 | <dependencies> |
69 | <dependency> |
70 | <groupId>org.onehippo.cms7</groupId> |
71 | <artifactId>hippo-repository-modules</artifactId> |
72 | <version>${hippo.repository.version}</version> |
73 | <scope>provided</scope> |
74 | </dependency> |
75 | <dependency> |
76 | <groupId>org.onehippo.cms7.hst</groupId> |
77 | <artifactId>hst-api</artifactId> |
78 | <version>${hippo.hst.version}</version> |
79 | <scope>provided</scope> |
80 | </dependency> |
81 | <dependency> |
82 | <groupId>org.onehippo.cms7.hst</groupId> |
83 | <artifactId>hst-content-beans</artifactId> |
84 | <version>${hippo.hst.version}</version> |
85 | <scope>provided</scope> |
86 | </dependency> |
87 | <dependency> |
88 | <groupId>org.onehippo.cms7.hst</groupId> |
89 | <artifactId>hst-client</artifactId> |
90 | <version>${hippo.hst.version}</version> |
91 | <scope>provided</scope> |
92 | </dependency> |
93 | <dependency> |
94 | <groupId>taglibs</groupId> |
95 | <artifactId>standard</artifactId> |
96 | <version>${taglibs.version}</version> |
97 | <scope>provided</scope> |
98 | </dependency> |
99 | <dependency> |
100 | <groupId>org.apache.jackrabbit</groupId> |
101 | <artifactId>jackrabbit-jcr-commons</artifactId> |
102 | <version>${jackrabbit.version}</version> |
103 | <scope>provided</scope> |
104 | </dependency> |
105 | </dependencies> |
106 | </dependencyManagement> |
107 | |
108 | <profiles> |
109 | <profile> |
110 | <id>pedantic</id> |
111 | <build> |
112 | <plugins> |
113 | <plugin> |
114 | <groupId>org.apache.rat</groupId> |
115 | <artifactId>apache-rat-plugin</artifactId> |
116 | <inherited>false</inherited> |
117 | <configuration> |
118 | <excludes combine.children="append"> |
119 | <!-- repository content XML --> |
120 | <exclude>repository/src/main/resources/**/*.xml</exclude> |
121 | </excludes> |
122 | </configuration> |
123 | </plugin> |
124 | </plugins> |
125 | </build> |
126 | </profile> |
127 | |
128 | </profiles> |
129 | |
130 | <modules> |
131 | <module>repository</module> |
132 | <module>hst</module> |
133 | </modules> |
134 | |
135 | </project> |
Name | Value |
---|---|
svn:eol-style | native |
svn:keywords | Id |
svn:mime-type | text/plain |