|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <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"> |
3 | | - <modelVersion>4.0.0</modelVersion> |
4 | | - <groupId>org.springframework.plugin</groupId> |
5 | | - <artifactId>spring-plugin</artifactId> |
6 | | - <packaging>pom</packaging> |
7 | | - <name>Spring Plugin</name> |
8 | | - <version>0.9.0.BUILD-SNAPSHOT</version> |
9 | | - <description>Simple plugin infrastructure</description> |
10 | | - |
11 | | - <organization> |
12 | | - <name>Pivotal, Inc.</name> |
13 | | - <url>http://www.springsource.org</url> |
14 | | - </organization> |
15 | | - <inceptionYear>2008</inceptionYear> |
16 | | - <url>https://github.com/SpringSource/spring-plugin</url> |
17 | | - |
18 | | - <licenses> |
| 3 | +<modelVersion>4.0.0</modelVersion> |
| 4 | +<groupId>org.springframework.plugin</groupId> |
| 5 | +<artifactId>spring-plugin</artifactId> |
| 6 | +<packaging>pom</packaging> |
| 7 | +<name>Spring Plugin</name> |
| 8 | +<version>0.9.0.BUILD-SNAPSHOT</version> |
| 9 | +<description>Simple plugin infrastructure</description> |
| 10 | + |
| 11 | +<organization> |
| 12 | +<name>Pivotal, Inc.</name> |
| 13 | +<url>http://www.springsource.org</url> |
| 14 | +</organization> |
| 15 | +<inceptionYear>2008</inceptionYear> |
| 16 | +<url>https://github.com/SpringSource/spring-plugin</url> |
| 17 | +
|
| 18 | +<licenses> |
19 | 19 | <license> |
20 | 20 | <name>Apache License, Version 2.0</name> |
21 | 21 | <url>http://www.apache.org/licenses/LICENSE-2.0</url> |
|
26 | 26 | you may not use this file except in compliance with the License. |
27 | 27 | You may obtain a copy of the License at |
28 | 28 |
|
29 | | - http://www.apache.org/licenses/LICENSE-2.0 |
| 29 | + http://www.apache.org/licenses/LICENSE-2.0 |
30 | 30 |
|
31 | 31 | Unless required by applicable law or agreed to in writing, software |
32 | 32 | distributed under the License is distributed on an "AS IS" BASIS, |
|
38 | 38 | </license> |
39 | 39 | </licenses> |
40 | 40 |
|
41 | | - <modules> |
42 | | - <module>core</module> |
43 | | - <module>metadata</module> |
44 | | - <module>integration</module> |
45 | | - </modules> |
46 | | - |
47 | | - <properties> |
48 | | - <spring.version>3.2.7.RELEASE</spring.version> |
49 | | - <slf4j.version>1.7.5</slf4j.version> |
50 | | - </properties> |
51 | | - |
52 | | - <developers> |
53 | | - <developer> |
54 | | - <id>gierke</id> |
55 | | - <name>Oliver Gierke</name> |
56 | | - <email>ogierke@gopivotal.com</email> |
57 | | - <url>http://www.olivergierke.de</url> |
58 | | - <organization>Pivtoal</organization> |
59 | | - <organizationUrl>http://www.gopivotal.com</organizationUrl> |
60 | | - <roles> |
61 | | - <role>Project lead</role> |
62 | | - </roles> |
63 | | - <timezone>+1</timezone> |
64 | | - </developer> |
65 | | - </developers> |
66 | | - |
67 | | - <dependencies> |
68 | | - |
69 | | - <!-- Common test dependencies --> |
70 | | - <dependency> |
71 | | - <groupId>org.hamcrest</groupId> |
72 | | - <artifactId>hamcrest-library</artifactId> |
73 | | - <version>1.3</version> |
74 | | - <scope>test</scope> |
75 | | - </dependency> |
76 | | - <dependency> |
77 | | - <groupId>junit</groupId> |
78 | | - <artifactId>junit</artifactId> |
79 | | - <version>4.11</version> |
80 | | - <scope>test</scope> |
81 | | - </dependency> |
82 | | - |
83 | | - <dependency> |
84 | | - <groupId>org.mockito</groupId> |
85 | | - <artifactId>mockito-all</artifactId> |
86 | | - <version>1.9.5</version> |
87 | | - <scope>test</scope> |
88 | | - </dependency> |
89 | | - |
90 | | - <!-- Logging --> |
91 | | - <dependency> |
92 | | - <groupId>org.slf4j</groupId> |
93 | | - <artifactId>slf4j-api</artifactId> |
94 | | - <version>${slf4j.version}</version> |
95 | | - </dependency> |
96 | | - <dependency> |
97 | | - <groupId>org.slf4j</groupId> |
98 | | - <artifactId>jcl-over-slf4j</artifactId> |
99 | | - <version>${slf4j.version}</version> |
100 | | - <scope>test</scope> |
101 | | - </dependency> |
102 | | - <dependency> |
103 | | - <groupId>ch.qos.logback</groupId> |
104 | | - <artifactId>logback-classic</artifactId> |
105 | | - <version>1.0.13</version> |
106 | | - <scope>test</scope> |
107 | | - </dependency> |
108 | | - |
109 | | - </dependencies> |
110 | | - |
111 | | - <build> |
112 | | - <plugins> |
113 | | - <plugin> |
114 | | - <groupId>org.apache.maven.plugins</groupId> |
115 | | - <artifactId>maven-compiler-plugin</artifactId> |
116 | | - <version>3.1</version> |
117 | | - <configuration> |
118 | | - <source>1.6</source> |
119 | | - <target>1.6</target> |
120 | | - </configuration> |
121 | | - </plugin> |
122 | | - |
123 | | - <plugin> |
124 | | - <groupId>org.apache.maven.plugins</groupId> |
125 | | - <artifactId>maven-source-plugin</artifactId> |
126 | | - <version>2.2.1</version> |
127 | | - <executions> |
128 | | - <execution> |
129 | | - <id>attach-sources</id> |
130 | | - <goals> |
131 | | - <goal>jar</goal> |
132 | | - </goals> |
133 | | - </execution> |
134 | | - </executions> |
135 | | - </plugin> |
136 | | - |
137 | | - <plugin> |
| 41 | +<modules> |
| 42 | +<module>core</module> |
| 43 | +<module>metadata</module> |
| 44 | +<module>integration</module> |
| 45 | +</modules> |
| 46 | +
|
| 47 | +<properties> |
| 48 | +<spring.version>3.2.7.RELEASE</spring.version> |
| 49 | +<slf4j.version>1.7.5</slf4j.version> |
| 50 | +</properties> |
| 51 | + |
| 52 | +<developers> |
| 53 | +<developer> |
| 54 | +<id>gierke</id> |
| 55 | +<name>Oliver Gierke</name> |
| 56 | +<email>ogierke@gopivotal.com</email> |
| 57 | +<url>http://www.olivergierke.de</url> |
| 58 | +<organization>Pivtoal</organization> |
| 59 | +<organizationUrl>http://www.gopivotal.com</organizationUrl> |
| 60 | +<roles> |
| 61 | +<role>Project lead</role> |
| 62 | +</roles> |
| 63 | +<timezone>+1</timezone> |
| 64 | +</developer> |
| 65 | +</developers> |
| 66 | +
|
| 67 | +<dependencies> |
| 68 | + |
| 69 | +<!-- Common test dependencies --> |
| 70 | +<dependency> |
| 71 | +<groupId>org.hamcrest</groupId> |
| 72 | +<artifactId>hamcrest-library</artifactId> |
| 73 | +<version>1.3</version> |
| 74 | +<scope>test</scope> |
| 75 | +</dependency> |
| 76 | +<dependency> |
| 77 | +<groupId>junit</groupId> |
| 78 | +<artifactId>junit</artifactId> |
| 79 | +<version>4.11</version> |
| 80 | +<scope>test</scope> |
| 81 | +</dependency> |
| 82 | +
|
| 83 | +<dependency> |
| 84 | +<groupId>org.mockito</groupId> |
| 85 | +<artifactId>mockito-all</artifactId> |
| 86 | +<version>1.9.5</version> |
| 87 | +<scope>test</scope> |
| 88 | +</dependency> |
| 89 | + |
| 90 | +<!-- Logging --> |
| 91 | +<dependency> |
| 92 | +<groupId>org.slf4j</groupId> |
| 93 | +<artifactId>slf4j-api</artifactId> |
| 94 | +<version>${slf4j.version}</version> |
| 95 | +</dependency> |
| 96 | +<dependency> |
| 97 | +<groupId>org.slf4j</groupId> |
| 98 | +<artifactId>jcl-over-slf4j</artifactId> |
| 99 | +<version>${slf4j.version}</version> |
| 100 | +<scope>test</scope> |
| 101 | +</dependency> |
| 102 | +<dependency> |
| 103 | +<groupId>ch.qos.logback</groupId> |
| 104 | +<artifactId>logback-classic</artifactId> |
| 105 | +<version>1.0.13</version> |
| 106 | +<scope>test</scope> |
| 107 | +</dependency> |
| 108 | + |
| 109 | +</dependencies> |
| 110 | + |
| 111 | +<build> |
| 112 | +<plugins> |
| 113 | +<plugin> |
| 114 | +<groupId>org.apache.maven.plugins</groupId> |
| 115 | +<artifactId>maven-compiler-plugin</artifactId> |
| 116 | +<version>3.1</version> |
| 117 | +<configuration> |
| 118 | +<source>1.6</source> |
| 119 | +<target>1.6</target> |
| 120 | +</configuration> |
| 121 | +</plugin> |
| 122 | + |
| 123 | +<plugin> |
| 124 | +<groupId>org.apache.maven.plugins</groupId> |
| 125 | +<artifactId>maven-source-plugin</artifactId> |
| 126 | +<version>2.2.1</version> |
| 127 | +<executions> |
| 128 | +<execution> |
| 129 | +<id>attach-sources</id> |
| 130 | +<goals> |
| 131 | +<goal>jar</goal> |
| 132 | +</goals> |
| 133 | +</execution> |
| 134 | +</executions> |
| 135 | +</plugin> |
| 136 | + |
| 137 | +<plugin> |
138 | 138 | <groupId>com.springsource.bundlor</groupId> |
139 | 139 | <artifactId>com.springsource.bundlor.maven</artifactId> |
140 | 140 | <version>1.0.0.RELEASE</version> |
|
147 | 147 | <phase>process-classes</phase> |
148 | 148 | </execution> |
149 | 149 | </executions> |
150 | | - <configuration> |
151 | | - <failOnWarnings>true</failOnWarnings> |
152 | | - </configuration> |
153 | | - </plugin> |
154 | | - |
155 | | - <plugin> |
156 | | - <groupId>org.apache.maven.plugins</groupId> |
157 | | - <artifactId>maven-jar-plugin</artifactId> |
158 | | - <version>2.4</version> |
159 | | - <configuration> |
160 | | - <useDefaultManifestFile>true</useDefaultManifestFile> |
161 | | - </configuration> |
162 | | - </plugin> |
163 | | - |
164 | | - <plugin> |
165 | | - <groupId>org.apache.maven.plugins</groupId> |
166 | | - <artifactId>maven-javadoc-plugin</artifactId> |
167 | | - <version>2.9.1</version> |
168 | | - <executions> |
169 | | - <execution> |
170 | | - <id>attach-javadocs</id> |
171 | | - <goals> |
172 | | - <goal>jar</goal> |
173 | | - </goals> |
174 | | - </execution> |
175 | | - </executions> |
176 | | - </plugin> |
177 | | - |
178 | | - </plugins> |
179 | | - </build> |
180 | | - |
181 | | - <scm> |
182 | | - <url>https://github.com/spring-projects/spring-plugin</url> |
183 | | - </scm> |
184 | | - |
185 | | - <ciManagement> |
186 | | - <system>Bamboo</system> |
187 | | - <url>https://build.springsource.org/browse/PLUGIN-MASTER</url> |
188 | | - </ciManagement> |
189 | | - |
190 | | - <issueManagement> |
191 | | - <system>Github</system> |
192 | | - <url>https://github.com/spring-projects/spring-plugin/issues</url> |
193 | | - </issueManagement> |
194 | | - |
195 | | - <repositories> |
196 | | - <repository> |
197 | | - <id>spring-libs-release</id> |
198 | | - <url>http://repo.spring.io/libs-release</url> |
199 | | - <snapshots> |
200 | | - <enabled>false</enabled> |
201 | | - </snapshots> |
202 | | - </repository> |
203 | | - </repositories> |
204 | | - |
205 | | - <pluginRepositories> |
206 | | - <pluginRepository> |
207 | | - <id>spring-plugins-release</id> |
208 | | - <url>http://repo.spring.io/plugins-release</url> |
209 | | - <snapshots> |
210 | | - <enabled>false</enabled> |
211 | | - </snapshots> |
212 | | - </pluginRepository> |
213 | | - </pluginRepositories> |
| 150 | +<configuration> |
| 151 | +<failOnWarnings>true</failOnWarnings> |
| 152 | +</configuration> |
| 153 | +</plugin> |
| 154 | + |
| 155 | +<plugin> |
| 156 | +<groupId>org.apache.maven.plugins</groupId> |
| 157 | +<artifactId>maven-jar-plugin</artifactId> |
| 158 | +<version>2.4</version> |
| 159 | +<configuration> |
| 160 | +<useDefaultManifestFile>true</useDefaultManifestFile> |
| 161 | +</configuration> |
| 162 | +</plugin> |
| 163 | + |
| 164 | +<plugin> |
| 165 | +<groupId>org.apache.maven.plugins</groupId> |
| 166 | +<artifactId>maven-javadoc-plugin</artifactId> |
| 167 | +<version>2.9.1</version> |
| 168 | +<executions> |
| 169 | +<execution> |
| 170 | +<id>attach-javadocs</id> |
| 171 | +<goals> |
| 172 | +<goal>jar</goal> |
| 173 | +</goals> |
| 174 | +</execution> |
| 175 | +</executions> |
| 176 | +</plugin> |
| 177 | + |
| 178 | +</plugins> |
| 179 | +</build> |
| 180 | + |
| 181 | +<scm> |
| 182 | +<url>https://github.com/spring-projects/spring-plugin</url> |
| 183 | +<connection>scm:git:git://github.com/spring-projects/spring-plugin.git</connection> |
| 184 | +<developerConnection>scm:git:ssh://git@github.com:spring-projects/spring-plugin.git</developerConnection> |
| 185 | +</scm> |
| 186 | + |
| 187 | +<ciManagement> |
| 188 | +<system>Bamboo</system> |
| 189 | +<url>https://build.springsource.org/browse/PLUGIN-MASTER</url> |
| 190 | +</ciManagement> |
| 191 | + |
| 192 | +<issueManagement> |
| 193 | +<system>Github</system> |
| 194 | +<url>https://github.com/spring-projects/spring-plugin/issues</url> |
| 195 | +</issueManagement> |
| 196 | + |
| 197 | +<repositories> |
| 198 | +<repository> |
| 199 | +<id>spring-libs-release</id> |
| 200 | +<url>http://repo.spring.io/libs-release</url> |
| 201 | +<snapshots> |
| 202 | +<enabled>false</enabled> |
| 203 | +</snapshots> |
| 204 | +</repository> |
| 205 | +</repositories> |
| 206 | + |
| 207 | +<pluginRepositories> |
| 208 | +<pluginRepository> |
| 209 | +<id>spring-plugins-release</id> |
| 210 | +<url>http://repo.spring.io/plugins-release</url> |
| 211 | +<snapshots> |
| 212 | +<enabled>false</enabled> |
| 213 | +</snapshots> |
| 214 | +</pluginRepository> |
| 215 | +</pluginRepositories> |
214 | 216 |
|
215 | 217 | </project> |
0 commit comments