Skip to content

Commit eb69e90

Browse files
committed
Update SNAPSHOT to 0.4.1
1 parent 3053920 commit eb69e90

File tree

9 files changed

+226
-17
lines changed

9 files changed

+226
-17
lines changed

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Extract the files into the JDK/jre/lib/security folder for whichever version of
2929

3030
== Building
3131

32-
:jdkversion: 1.8
32+
:jdkversion: 17
3333

3434
=== Basic Compile and Test
3535

docs/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66

77
<artifactId>spring-cloud-square-docs</artifactId>
8-
<version>0.4.1-SNAPSHOT</version>
8+
<version>0.4.1</version>
99
<packaging>jar</packaging>
1010

1111
<name>Spring Cloud Square Docs</name>
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.springframework.cloud</groupId>
1616
<artifactId>spring-cloud-square</artifactId>
17-
<version>0.4.1-SNAPSHOT</version>
17+
<version>0.4.1</version>
1818
<relativePath>..</relativePath> <!-- lookup parent from repository -->
1919
</parent>
2020

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66

77
<artifactId>spring-cloud-square</artifactId>
8-
<version>0.4.1-SNAPSHOT</version>
8+
<version>0.4.1</version>
99
<packaging>pom</packaging>
1010

1111
<name>Spring Cloud Square</name>
@@ -14,14 +14,14 @@
1414
<parent>
1515
<groupId>org.springframework.cloud</groupId>
1616
<artifactId>spring-cloud-build</artifactId>
17-
<version>3.1.2-SNAPSHOT</version>
17+
<version>3.1.1</version>
1818
<relativePath/>
1919
</parent>
2020

2121
<properties>
2222
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
23-
<spring-cloud-commons.version>3.1.2-SNAPSHOT</spring-cloud-commons.version>
24-
<spring-cloud-sleuth.version>3.1.2-SNAPSHOT</spring-cloud-sleuth.version>
23+
<spring-cloud-commons.version>3.1.1</spring-cloud-commons.version>
24+
<spring-cloud-sleuth.version>3.1.1</spring-cloud-sleuth.version>
2525
</properties>
2626

2727
<dependencyManagement>
Lines changed: 209 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,209 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4+
<modelVersion>4.0.0</modelVersion>
5+
<parent>
6+
<groupId>org.springframework.cloud</groupId>
7+
<artifactId>spring-cloud-dependencies-parent</artifactId>
8+
<version>3.1.1</version>
9+
<relativePath></relativePath>
10+
</parent>
11+
<groupId>org.springframework.cloud</groupId>
12+
<artifactId>spring-cloud-square-dependencies</artifactId>
13+
<version>0.4.1</version>
14+
<packaging>pom</packaging>
15+
<name>Spring Cloud Square Dependencies</name>
16+
<description>Spring Cloud Square Dependencies</description>
17+
<url>https://projects.spring.io/spring-cloud/spring-cloud-square-dependencies/</url>
18+
<organization>
19+
<name>Pivotal Software, Inc.</name>
20+
<url>https://www.spring.io</url>
21+
</organization>
22+
<licenses>
23+
<license>
24+
<name>Apache License, Version 2.0</name>
25+
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
26+
<comments>Copyright 2014-2021 the original author or authors.
27+
28+
Licensed under the Apache License, Version 2.0 (the "License");
29+
you may not use this file except in compliance with the License.
30+
You may obtain a copy of the License at
31+
32+
https://www.apache.org/licenses/LICENSE-2.0
33+
34+
Unless required by applicable law or agreed to in writing, software
35+
distributed under the License is distributed on an "AS IS" BASIS,
36+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
37+
implied.
38+
39+
See the License for the specific language governing permissions and
40+
limitations under the License.</comments>
41+
</license>
42+
</licenses>
43+
<developers>
44+
<developer>
45+
<id>dsyer</id>
46+
<name>Dave Syer</name>
47+
<email>dsyer at pivotal.io</email>
48+
<organization>Pivotal Software, Inc.</organization>
49+
<organizationUrl>https://www.spring.io</organizationUrl>
50+
<roles>
51+
<role>Project lead</role>
52+
</roles>
53+
</developer>
54+
<developer>
55+
<id>sgibb</id>
56+
<name>Spencer Gibb</name>
57+
<email>sgibb at pivotal.io</email>
58+
<organization>Pivotal Software, Inc.</organization>
59+
<organizationUrl>https://www.spring.io</organizationUrl>
60+
<roles>
61+
<role>Project lead</role>
62+
</roles>
63+
</developer>
64+
</developers>
65+
<scm>
66+
<connection>scm:git:git://github.com/spring-cloud/spring-cloud-build.git/spring-cloud-square-dependencies</connection>
67+
<developerConnection>scm:git:ssh://git@github.com/spring-cloud/spring-cloud-build.git/spring-cloud-square-dependencies</developerConnection>
68+
<url>https://github.com/spring-cloud/spring-cloud-build/spring-cloud-square-dependencies</url>
69+
</scm>
70+
<distributionManagement>
71+
<repository>
72+
<id>repo.spring.io</id>
73+
<name>Spring Release Repository</name>
74+
<url>https://repo.spring.io/libs-release-local</url>
75+
</repository>
76+
<snapshotRepository>
77+
<id>repo.spring.io</id>
78+
<name>Spring Snapshot Repository</name>
79+
<url>https://repo.spring.io/libs-snapshot-local</url>
80+
</snapshotRepository>
81+
<site>
82+
<id>spring-docs</id>
83+
<url>https:/docs.spring.io/spring-cloud-dependencies-parent/docs/3.1.1/reference/html/spring-cloud-square-dependencies/</url>
84+
</site>
85+
<downloadUrl>https://github.com/spring-cloud</downloadUrl>
86+
</distributionManagement>
87+
<properties>
88+
<retrofit-reactor.version>2.1.0</retrofit-reactor.version>
89+
<retrofit.version>2.9.0</retrofit.version>
90+
<okhttp.version>4.9.3</okhttp.version>
91+
</properties>
92+
<dependencyManagement>
93+
<dependencies>
94+
<dependency>
95+
<groupId>com.squareup.okhttp3</groupId>
96+
<artifactId>okhttp</artifactId>
97+
<version>${okhttp.version}</version>
98+
<optional>true</optional>
99+
</dependency>
100+
<dependency>
101+
<groupId>com.squareup.okhttp3</groupId>
102+
<artifactId>logging-interceptor</artifactId>
103+
<version>${okhttp.version}</version>
104+
<scope>test</scope>
105+
</dependency>
106+
<dependency>
107+
<groupId>org.springframework.cloud</groupId>
108+
<artifactId>spring-cloud-square-okhttp</artifactId>
109+
<version>${project.version}</version>
110+
</dependency>
111+
<dependency>
112+
<groupId>org.springframework.cloud</groupId>
113+
<artifactId>spring-cloud-square-retrofit-core</artifactId>
114+
<version>${project.version}</version>
115+
</dependency>
116+
<dependency>
117+
<groupId>org.springframework.cloud</groupId>
118+
<artifactId>spring-cloud-square-retrofit</artifactId>
119+
<version>${project.version}</version>
120+
</dependency>
121+
<dependency>
122+
<groupId>org.springframework.cloud</groupId>
123+
<artifactId>spring-cloud-square-retrofit-webclient</artifactId>
124+
<version>${project.version}</version>
125+
</dependency>
126+
<dependency>
127+
<groupId>com.squareup.retrofit2</groupId>
128+
<artifactId>retrofit</artifactId>
129+
<version>${retrofit.version}</version>
130+
<exclusions>
131+
<exclusion>
132+
<artifactId>okhttp</artifactId>
133+
<groupId>com.squareup.okhttp3</groupId>
134+
</exclusion>
135+
</exclusions>
136+
</dependency>
137+
<dependency>
138+
<groupId>com.squareup.retrofit2</groupId>
139+
<artifactId>converter-scalars</artifactId>
140+
<version>${retrofit.version}</version>
141+
</dependency>
142+
<dependency>
143+
<groupId>com.squareup.retrofit2</groupId>
144+
<artifactId>converter-jackson</artifactId>
145+
<version>${retrofit.version}</version>
146+
</dependency>
147+
<dependency>
148+
<groupId>com.jakewharton.retrofit</groupId>
149+
<artifactId>retrofit2-reactor-adapter</artifactId>
150+
<version>${retrofit-reactor.version}</version>
151+
</dependency>
152+
</dependencies>
153+
</dependencyManagement>
154+
<profiles>
155+
<profile>
156+
<id>spring</id>
157+
<repositories>
158+
<repository>
159+
<releases>
160+
<enabled>false</enabled>
161+
</releases>
162+
<snapshots>
163+
<enabled>true</enabled>
164+
</snapshots>
165+
<id>spring-snapshots</id>
166+
<name>Spring Snapshots</name>
167+
<url>https://repo.spring.io/libs-snapshot-local</url>
168+
</repository>
169+
<repository>
170+
<snapshots>
171+
<enabled>false</enabled>
172+
</snapshots>
173+
<id>spring-milestones</id>
174+
<name>Spring Milestones</name>
175+
<url>https://repo.spring.io/libs-milestone-local</url>
176+
</repository>
177+
<repository>
178+
<snapshots>
179+
<enabled>false</enabled>
180+
</snapshots>
181+
<id>spring-releases</id>
182+
<name>Spring Releases</name>
183+
<url>https://repo.spring.io/release</url>
184+
</repository>
185+
</repositories>
186+
<pluginRepositories>
187+
<pluginRepository>
188+
<releases>
189+
<enabled>false</enabled>
190+
</releases>
191+
<snapshots>
192+
<enabled>true</enabled>
193+
</snapshots>
194+
<id>spring-snapshots</id>
195+
<name>Spring Snapshots</name>
196+
<url>https://repo.spring.io/libs-snapshot-local</url>
197+
</pluginRepository>
198+
<pluginRepository>
199+
<snapshots>
200+
<enabled>false</enabled>
201+
</snapshots>
202+
<id>spring-milestones</id>
203+
<name>Spring Milestones</name>
204+
<url>https://repo.spring.io/libs-milestone-local</url>
205+
</pluginRepository>
206+
</pluginRepositories>
207+
</profile>
208+
</profiles>
209+
</project>

spring-cloud-square-dependencies/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<parent>
77
<artifactId>spring-cloud-dependencies-parent</artifactId>
88
<groupId>org.springframework.cloud</groupId>
9-
<version>3.1.1-SNAPSHOT</version>
9+
<version>3.1.1</version>
1010
<relativePath/>
1111
</parent>
1212
<artifactId>spring-cloud-square-dependencies</artifactId>
13-
<version>0.4.1-SNAPSHOT</version>
13+
<version>0.4.1</version>
1414
<packaging>pom</packaging>
1515
<name>Spring Cloud Square Dependencies</name>
1616
<description>Spring Cloud Square Dependencies</description>

spring-cloud-square-okhttp/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66

77
<artifactId>spring-cloud-square-okhttp</artifactId>
8-
<version>0.4.1-SNAPSHOT</version>
8+
<version>0.4.1</version>
99
<packaging>jar</packaging>
1010

1111
<name>Spring Cloud Square OkHttp</name>
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.springframework.cloud</groupId>
1616
<artifactId>spring-cloud-square</artifactId>
17-
<version>0.4.1-SNAPSHOT</version>
17+
<version>0.4.1</version>
1818
<relativePath>..</relativePath> <!-- lookup parent from repository -->
1919
</parent>
2020

spring-cloud-square-retrofit-core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66

77
<artifactId>spring-cloud-square-retrofit-core</artifactId>
8-
<version>0.4.1-SNAPSHOT</version>
8+
<version>0.4.1</version>
99
<packaging>jar</packaging>
1010

1111
<name>Spring Cloud Square Retrofit Core</name>
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.springframework.cloud</groupId>
1616
<artifactId>spring-cloud-square</artifactId>
17-
<version>0.4.1-SNAPSHOT</version>
17+
<version>0.4.1</version>
1818
<relativePath>..</relativePath> <!-- lookup parent from repository -->
1919
</parent>
2020

spring-cloud-square-retrofit-webclient/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66

77
<artifactId>spring-cloud-square-retrofit-webclient</artifactId>
8-
<version>0.4.1-SNAPSHOT</version>
8+
<version>0.4.1</version>
99
<packaging>jar</packaging>
1010

1111
<name>Spring Cloud Square Retrofit WebClient</name>
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.springframework.cloud</groupId>
1616
<artifactId>spring-cloud-square</artifactId>
17-
<version>0.4.1-SNAPSHOT</version>
17+
<version>0.4.1</version>
1818
<relativePath>..</relativePath> <!-- lookup parent from repository -->
1919
</parent>
2020

spring-cloud-square-retrofit/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66

77
<artifactId>spring-cloud-square-retrofit</artifactId>
8-
<version>0.4.1-SNAPSHOT</version>
8+
<version>0.4.1</version>
99
<packaging>jar</packaging>
1010

1111
<name>Spring Cloud Square Retrofit</name>
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.springframework.cloud</groupId>
1616
<artifactId>spring-cloud-square</artifactId>
17-
<version>0.4.1-SNAPSHOT</version>
17+
<version>0.4.1</version>
1818
<relativePath>..</relativePath> <!-- lookup parent from repository -->
1919
</parent>
2020

0 commit comments

Comments
 (0)