Skip to content

Commit bcb024c

Browse files
committed
Release version 1.1.0
1 parent 5a4ac12 commit bcb024c

File tree

97 files changed

+169
-181
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+169
-181
lines changed

Diff for: pom.xml

+17-18
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
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/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54
<groupId>org.springframework.boot</groupId>
65
<artifactId>spring-boot-build</artifactId>
7-
<version>1.1.0.BUILD-SNAPSHOT</version>
6+
<version>1.1.0.RELEASE</version>
87
<packaging>pom</packaging>
98
<name>Spring Boot Build</name>
109
<description>Spring Boot Build</description>
@@ -153,20 +152,20 @@
153152
<inherited>false</inherited>
154153
<configuration>
155154
<target>
156-
<taskdef resource="net/sf/antcontrib/antcontrib.properties"/>
157-
<taskdef name="stringutil" classname="ise.antelope.tasks.StringUtilTask"/>
158-
<var name="version-type" value="${project.version}"/>
159-
<propertyregex property="version-type" override="true" input="${version-type}" regexp=".*\.(.*)" replace="\1"/>
160-
<propertyregex property="version-type" override="true" input="${version-type}" regexp="(M)\d+" replace="MILESTONE"/>
161-
<propertyregex property="version-type" override="true" input="${version-type}" regexp="(RC)\d+" replace="MILESTONE"/>
162-
<propertyregex property="version-type" override="true" input="${version-type}" regexp="BUILD-(.*)" replace="SNAPSHOT"/>
155+
<taskdef resource="net/sf/antcontrib/antcontrib.properties" />
156+
<taskdef name="stringutil" classname="ise.antelope.tasks.StringUtilTask" />
157+
<var name="version-type" value="${project.version}" />
158+
<propertyregex property="version-type" override="true" input="${version-type}" regexp=".*\.(.*)" replace="\1" />
159+
<propertyregex property="version-type" override="true" input="${version-type}" regexp="(M)\d+" replace="MILESTONE" />
160+
<propertyregex property="version-type" override="true" input="${version-type}" regexp="(RC)\d+" replace="MILESTONE" />
161+
<propertyregex property="version-type" override="true" input="${version-type}" regexp="BUILD-(.*)" replace="SNAPSHOT" />
163162
<stringutil string="${version-type}" property="profile">
164-
<lowercase/>
163+
<lowercase />
165164
</stringutil>
166-
<echo message="Writing settings for ${profile} profile"/>
165+
<echo message="Writing settings for ${profile} profile" />
167166
<copy file=".settings-template.xml" tofile="settings.xml" overwrite="true">
168167
<filterset>
169-
<filter token="profile" value="${profile}"/>
168+
<filter token="profile" value="${profile}" />
170169
</filterset>
171170
</copy>
172171
</target>
@@ -181,7 +180,7 @@
181180
<inherited>false</inherited>
182181
<configuration>
183182
<target>
184-
<property name="sourceFile" value="spring-boot-dependencies/pom.xml"/>
183+
<property name="sourceFile" value="spring-boot-dependencies/pom.xml" />
185184
<xslt in="${sourceFile}" out="${sourceFile}.new" force="true">
186185
<style>
187186
<string><![CDATA[
@@ -204,9 +203,9 @@
204203
</string>
205204
</style>
206205
</xslt>
207-
<move file="${sourceFile}" tofile="${sourceFile}.old"/>
208-
<move file="${sourceFile}.new" tofile="${sourceFile}"/>
209-
<delete file="${sourceFile}.old"/>
206+
<move file="${sourceFile}" tofile="${sourceFile}.old" />
207+
<move file="${sourceFile}.new" tofile="${sourceFile}" />
208+
<delete file="${sourceFile}.old" />
210209
</target>
211210
</configuration>
212211
</execution>
@@ -248,7 +247,7 @@
248247
<include>${basedir}/spring-boot-samples/**/build.xml</include>
249248
</includes>
250249
<token>spring-boot\.version\"\s.*+</token>
251-
<value>spring-boot.version" value="${project.version}" /></value>
250+
<value>spring-boot.version" value="${project.version}" /&gt;</value>
252251
</configuration>
253252
</execution>
254253
</executions>

Diff for: spring-boot-actuator/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.springframework.boot</groupId>
66
<artifactId>spring-boot-parent</artifactId>
7-
<version>1.1.0.BUILD-SNAPSHOT</version>
7+
<version>1.1.0.RELEASE</version>
88
<relativePath>../spring-boot-parent</relativePath>
99
</parent>
1010
<artifactId>spring-boot-actuator</artifactId>

Diff for: spring-boot-autoconfigure/pom.xml

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
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/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54
<parent>
65
<groupId>org.springframework.boot</groupId>
76
<artifactId>spring-boot-parent</artifactId>
8-
<version>1.1.0.BUILD-SNAPSHOT</version>
7+
<version>1.1.0.RELEASE</version>
98
<relativePath>../spring-boot-parent</relativePath>
109
</parent>
1110
<artifactId>spring-boot-autoconfigure</artifactId>

Diff for: spring-boot-cli/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.springframework.boot</groupId>
66
<artifactId>spring-boot-parent</artifactId>
7-
<version>1.1.0.BUILD-SNAPSHOT</version>
7+
<version>1.1.0.RELEASE</version>
88
<relativePath>../spring-boot-parent</relativePath>
99
</parent>
1010
<artifactId>spring-boot-cli</artifactId>

Diff for: spring-boot-dependencies/pom.xml

+42-42
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>org.springframework.boot</groupId>
44
<artifactId>spring-boot-dependencies</artifactId>
5-
<version>1.1.0.BUILD-SNAPSHOT</version>
5+
<version>1.1.0.RELEASE</version>
66
<packaging>pom</packaging>
77
<name>Spring Boot Dependencies</name>
88
<description>Spring Boot Dependencies</description>
@@ -44,7 +44,7 @@
4444
</developers>
4545
<properties>
4646
<!-- Spring Boot -->
47-
<spring-boot.version>1.1.0.BUILD-SNAPSHOT</spring-boot.version>
47+
<spring-boot.version>1.1.0.RELEASE</spring-boot.version>
4848
<!-- Third Party -->
4949
<activemq.version>5.9.1</activemq.version>
5050
<aspectj.version>1.8.0</aspectj.version>
@@ -128,43 +128,43 @@
128128
<dependency>
129129
<groupId>org.springframework.boot</groupId>
130130
<artifactId>spring-boot</artifactId>
131-
<version>1.1.0.BUILD-SNAPSHOT</version>
131+
<version>1.1.0.RELEASE</version>
132132
</dependency>
133133
<dependency>
134134
<groupId>org.springframework.boot</groupId>
135135
<artifactId>spring-boot</artifactId>
136136
<type>test-jar</type>
137-
<version>1.1.0.BUILD-SNAPSHOT</version>
137+
<version>1.1.0.RELEASE</version>
138138
</dependency>
139139
<dependency>
140140
<groupId>org.springframework.boot</groupId>
141141
<artifactId>spring-boot-actuator</artifactId>
142-
<version>1.1.0.BUILD-SNAPSHOT</version>
142+
<version>1.1.0.RELEASE</version>
143143
</dependency>
144144
<dependency>
145145
<groupId>org.springframework.boot</groupId>
146146
<artifactId>spring-boot-autoconfigure</artifactId>
147-
<version>1.1.0.BUILD-SNAPSHOT</version>
147+
<version>1.1.0.RELEASE</version>
148148
</dependency>
149149
<dependency>
150150
<groupId>org.springframework.boot</groupId>
151151
<artifactId>spring-boot-dependency-tools</artifactId>
152-
<version>1.1.0.BUILD-SNAPSHOT</version>
152+
<version>1.1.0.RELEASE</version>
153153
</dependency>
154154
<dependency>
155155
<groupId>org.springframework.boot</groupId>
156156
<artifactId>spring-boot-loader</artifactId>
157-
<version>1.1.0.BUILD-SNAPSHOT</version>
157+
<version>1.1.0.RELEASE</version>
158158
</dependency>
159159
<dependency>
160160
<groupId>org.springframework.boot</groupId>
161161
<artifactId>spring-boot-loader-tools</artifactId>
162-
<version>1.1.0.BUILD-SNAPSHOT</version>
162+
<version>1.1.0.RELEASE</version>
163163
</dependency>
164164
<dependency>
165165
<groupId>org.springframework.boot</groupId>
166166
<artifactId>spring-boot-starter</artifactId>
167-
<version>1.1.0.BUILD-SNAPSHOT</version>
167+
<version>1.1.0.RELEASE</version>
168168
<exclusions>
169169
<exclusion>
170170
<groupId>commons-logging</groupId>
@@ -175,132 +175,132 @@
175175
<dependency>
176176
<groupId>org.springframework.boot</groupId>
177177
<artifactId>spring-boot-starter-actuator</artifactId>
178-
<version>1.1.0.BUILD-SNAPSHOT</version>
178+
<version>1.1.0.RELEASE</version>
179179
</dependency>
180180
<dependency>
181181
<groupId>org.springframework.boot</groupId>
182182
<artifactId>spring-boot-starter-amqp</artifactId>
183-
<version>1.1.0.BUILD-SNAPSHOT</version>
183+
<version>1.1.0.RELEASE</version>
184184
</dependency>
185185
<dependency>
186186
<groupId>org.springframework.boot</groupId>
187187
<artifactId>spring-boot-starter-aop</artifactId>
188-
<version>1.1.0.BUILD-SNAPSHOT</version>
188+
<version>1.1.0.RELEASE</version>
189189
</dependency>
190190
<dependency>
191191
<groupId>org.springframework.boot</groupId>
192192
<artifactId>spring-boot-starter-batch</artifactId>
193-
<version>1.1.0.BUILD-SNAPSHOT</version>
193+
<version>1.1.0.RELEASE</version>
194194
</dependency>
195195
<dependency>
196196
<groupId>org.springframework.boot</groupId>
197197
<artifactId>spring-boot-starter-data-elasticsearch</artifactId>
198-
<version>1.1.0.BUILD-SNAPSHOT</version>
198+
<version>1.1.0.RELEASE</version>
199199
</dependency>
200200
<dependency>
201201
<groupId>org.springframework.boot</groupId>
202202
<artifactId>spring-boot-starter-data-gemfire</artifactId>
203-
<version>1.1.0.BUILD-SNAPSHOT</version>
203+
<version>1.1.0.RELEASE</version>
204204
</dependency>
205205
<dependency>
206206
<groupId>org.springframework.boot</groupId>
207207
<artifactId>spring-boot-starter-data-jpa</artifactId>
208-
<version>1.1.0.BUILD-SNAPSHOT</version>
208+
<version>1.1.0.RELEASE</version>
209209
</dependency>
210210
<dependency>
211211
<groupId>org.springframework.boot</groupId>
212212
<artifactId>spring-boot-starter-data-mongodb</artifactId>
213-
<version>1.1.0.BUILD-SNAPSHOT</version>
213+
<version>1.1.0.RELEASE</version>
214214
</dependency>
215215
<dependency>
216216
<groupId>org.springframework.boot</groupId>
217217
<artifactId>spring-boot-starter-data-rest</artifactId>
218-
<version>1.1.0.BUILD-SNAPSHOT</version>
218+
<version>1.1.0.RELEASE</version>
219219
</dependency>
220220
<dependency>
221221
<groupId>org.springframework.boot</groupId>
222222
<artifactId>spring-boot-starter-data-solr</artifactId>
223-
<version>1.1.0.BUILD-SNAPSHOT</version>
223+
<version>1.1.0.RELEASE</version>
224224
</dependency>
225225
<dependency>
226226
<groupId>org.springframework.boot</groupId>
227227
<artifactId>spring-boot-starter-freemarker</artifactId>
228-
<version>1.1.0.BUILD-SNAPSHOT</version>
228+
<version>1.1.0.RELEASE</version>
229229
</dependency>
230230
<dependency>
231231
<groupId>org.springframework.boot</groupId>
232232
<artifactId>spring-boot-starter-groovy-templates</artifactId>
233-
<version>1.1.0.BUILD-SNAPSHOT</version>
233+
<version>1.1.0.RELEASE</version>
234234
</dependency>
235235
<dependency>
236236
<groupId>org.springframework.boot</groupId>
237237
<artifactId>spring-boot-starter-hornetq</artifactId>
238-
<version>1.1.0.BUILD-SNAPSHOT</version>
238+
<version>1.1.0.RELEASE</version>
239239
</dependency>
240240
<dependency>
241241
<groupId>org.springframework.boot</groupId>
242242
<artifactId>spring-boot-starter-integration</artifactId>
243-
<version>1.1.0.BUILD-SNAPSHOT</version>
243+
<version>1.1.0.RELEASE</version>
244244
</dependency>
245245
<dependency>
246246
<groupId>org.springframework.boot</groupId>
247247
<artifactId>spring-boot-starter-jdbc</artifactId>
248-
<version>1.1.0.BUILD-SNAPSHOT</version>
248+
<version>1.1.0.RELEASE</version>
249249
</dependency>
250250
<dependency>
251251
<groupId>org.springframework.boot</groupId>
252252
<artifactId>spring-boot-starter-jetty</artifactId>
253-
<version>1.1.0.BUILD-SNAPSHOT</version>
253+
<version>1.1.0.RELEASE</version>
254254
</dependency>
255255
<dependency>
256256
<groupId>org.springframework.boot</groupId>
257257
<artifactId>spring-boot-starter-log4j</artifactId>
258-
<version>1.1.0.BUILD-SNAPSHOT</version>
258+
<version>1.1.0.RELEASE</version>
259259
</dependency>
260260
<dependency>
261261
<groupId>org.springframework.boot</groupId>
262262
<artifactId>spring-boot-starter-logging</artifactId>
263-
<version>1.1.0.BUILD-SNAPSHOT</version>
263+
<version>1.1.0.RELEASE</version>
264264
</dependency>
265265
<dependency>
266266
<groupId>org.springframework.boot</groupId>
267267
<artifactId>spring-boot-starter-mobile</artifactId>
268-
<version>1.1.0.BUILD-SNAPSHOT</version>
268+
<version>1.1.0.RELEASE</version>
269269
</dependency>
270270
<dependency>
271271
<groupId>org.springframework.boot</groupId>
272272
<artifactId>spring-boot-starter-redis</artifactId>
273-
<version>1.1.0.BUILD-SNAPSHOT</version>
273+
<version>1.1.0.RELEASE</version>
274274
</dependency>
275275
<dependency>
276276
<groupId>org.springframework.boot</groupId>
277277
<artifactId>spring-boot-starter-remote-shell</artifactId>
278-
<version>1.1.0.BUILD-SNAPSHOT</version>
278+
<version>1.1.0.RELEASE</version>
279279
</dependency>
280280
<dependency>
281281
<groupId>org.springframework.boot</groupId>
282282
<artifactId>spring-boot-starter-security</artifactId>
283-
<version>1.1.0.BUILD-SNAPSHOT</version>
283+
<version>1.1.0.RELEASE</version>
284284
</dependency>
285285
<dependency>
286286
<groupId>org.springframework.boot</groupId>
287287
<artifactId>spring-boot-starter-social-facebook</artifactId>
288-
<version>1.1.0.BUILD-SNAPSHOT</version>
288+
<version>1.1.0.RELEASE</version>
289289
</dependency>
290290
<dependency>
291291
<groupId>org.springframework.boot</groupId>
292292
<artifactId>spring-boot-starter-social-linkedin</artifactId>
293-
<version>1.1.0.BUILD-SNAPSHOT</version>
293+
<version>1.1.0.RELEASE</version>
294294
</dependency>
295295
<dependency>
296296
<groupId>org.springframework.boot</groupId>
297297
<artifactId>spring-boot-starter-social-twitter</artifactId>
298-
<version>1.1.0.BUILD-SNAPSHOT</version>
298+
<version>1.1.0.RELEASE</version>
299299
</dependency>
300300
<dependency>
301301
<groupId>org.springframework.boot</groupId>
302302
<artifactId>spring-boot-starter-test</artifactId>
303-
<version>1.1.0.BUILD-SNAPSHOT</version>
303+
<version>1.1.0.RELEASE</version>
304304
<exclusions>
305305
<exclusion>
306306
<groupId>commons-logging</groupId>
@@ -311,32 +311,32 @@
311311
<dependency>
312312
<groupId>org.springframework.boot</groupId>
313313
<artifactId>spring-boot-starter-thymeleaf</artifactId>
314-
<version>1.1.0.BUILD-SNAPSHOT</version>
314+
<version>1.1.0.RELEASE</version>
315315
</dependency>
316316
<dependency>
317317
<groupId>org.springframework.boot</groupId>
318318
<artifactId>spring-boot-starter-tomcat</artifactId>
319-
<version>1.1.0.BUILD-SNAPSHOT</version>
319+
<version>1.1.0.RELEASE</version>
320320
</dependency>
321321
<dependency>
322322
<groupId>org.springframework.boot</groupId>
323323
<artifactId>spring-boot-starter-velocity</artifactId>
324-
<version>1.1.0.BUILD-SNAPSHOT</version>
324+
<version>1.1.0.RELEASE</version>
325325
</dependency>
326326
<dependency>
327327
<groupId>org.springframework.boot</groupId>
328328
<artifactId>spring-boot-starter-web</artifactId>
329-
<version>1.1.0.BUILD-SNAPSHOT</version>
329+
<version>1.1.0.RELEASE</version>
330330
</dependency>
331331
<dependency>
332332
<groupId>org.springframework.boot</groupId>
333333
<artifactId>spring-boot-starter-websocket</artifactId>
334-
<version>1.1.0.BUILD-SNAPSHOT</version>
334+
<version>1.1.0.RELEASE</version>
335335
</dependency>
336336
<dependency>
337337
<groupId>org.springframework.boot</groupId>
338338
<artifactId>spring-boot-starter-ws</artifactId>
339-
<version>1.1.0.BUILD-SNAPSHOT</version>
339+
<version>1.1.0.RELEASE</version>
340340
</dependency>
341341

342342
<!-- Third Party -->

Diff for: spring-boot-docs/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.springframework.boot</groupId>
66
<artifactId>spring-boot-parent</artifactId>
7-
<version>1.1.0.BUILD-SNAPSHOT</version>
7+
<version>1.1.0.RELEASE</version>
88
<relativePath>../spring-boot-parent</relativePath>
99
</parent>
1010
<artifactId>spring-boot-docs</artifactId>

Diff for: spring-boot-full-build/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>org.springframework.boot</groupId>
55
<artifactId>spring-boot-full-build</artifactId>
6-
<version>1.1.0.BUILD-SNAPSHOT</version>
6+
<version>1.1.0.RELEASE</version>
77
<packaging>pom</packaging>
88
<name>Spring Boot Full Build</name>
99
<description>Spring Boot Full Build</description>

0 commit comments

Comments
 (0)