Skip to content

Commit 4962abe

Browse files
ryanjbaxterolegz
authored andcommitted
Initial changes to update repositories
Resolves #3206
1 parent 9505bca commit 4962abe

7 files changed

Lines changed: 157 additions & 84 deletions

File tree

.github/workflows/pr.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: PR
2+
3+
on:
4+
pull_request:
5+
branches: [ 4.3.x ]
6+
7+
jobs:
8+
build:
9+
uses: spring-cloud/spring-cloud-github-actions/.github/workflows/pr.yml@main

.mvn/maven.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
-DaltSnapshotDeploymentRepository=repo.spring.io::default::https://repo.spring.io/libs-snapshot-local -P spring
1+
-P spring

binders/kafka-binder/pom.xml

Lines changed: 45 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,6 @@
8383
</build>
8484

8585
<profiles>
86-
<profile>
87-
<id>spring</id>
88-
89-
90-
</profile>
9186
<profile>
9287
<id>coverage</id>
9388
<activation>
@@ -121,6 +116,51 @@
121116
</plugins>
122117
</build>
123118
</profile>
119+
<profile>
120+
<id>spring</id>
121+
<repositories>
122+
<repository>
123+
<id>spring-snapshots</id>
124+
<name>Spring Snapshots</name>
125+
<url>https://repo.spring.io/libs-snapshot-local</url>
126+
<snapshots>
127+
<enabled>true</enabled>
128+
</snapshots>
129+
<releases>
130+
<enabled>false</enabled>
131+
</releases>
132+
</repository>
133+
<repository>
134+
<id>spring-milestones</id>
135+
<name>Spring Milestones</name>
136+
<url>https://repo.spring.io/libs-milestone-local</url>
137+
<snapshots>
138+
<enabled>false</enabled>
139+
</snapshots>
140+
</repository>
141+
</repositories>
142+
<pluginRepositories>
143+
<pluginRepository>
144+
<id>spring-snapshots</id>
145+
<name>Spring Snapshots</name>
146+
<url>https://repo.spring.io/libs-snapshot-local</url>
147+
<snapshots>
148+
<enabled>true</enabled>
149+
</snapshots>
150+
<releases>
151+
<enabled>false</enabled>
152+
</releases>
153+
</pluginRepository>
154+
<pluginRepository>
155+
<id>spring-milestones</id>
156+
<name>Spring Milestones</name>
157+
<url>https://repo.spring.io/libs-milestone-local</url>
158+
<snapshots>
159+
<enabled>false</enabled>
160+
</snapshots>
161+
</pluginRepository>
162+
</pluginRepositories>
163+
</profile>
124164
</profiles>
125165
<reporting>
126166
<plugins>

binders/pulsar-binder/pom.xml

Lines changed: 45 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,6 @@
7373
</build>
7474

7575
<profiles>
76-
<profile>
77-
<id>spring</id>
78-
79-
80-
</profile>
8176
<profile>
8277
<id>coverage</id>
8378
<activation>
@@ -111,47 +106,52 @@
111106
</plugins>
112107
</build>
113108
</profile>
109+
<profile>
110+
<id>spring</id>
111+
<repositories>
112+
<repository>
113+
<id>spring-snapshots</id>
114+
<name>Spring Snapshots</name>
115+
<url>https://repo.spring.io/libs-snapshot-local</url>
116+
<snapshots>
117+
<enabled>true</enabled>
118+
</snapshots>
119+
<releases>
120+
<enabled>false</enabled>
121+
</releases>
122+
</repository>
123+
<repository>
124+
<id>spring-milestones</id>
125+
<name>Spring Milestones</name>
126+
<url>https://repo.spring.io/libs-milestone-local</url>
127+
<snapshots>
128+
<enabled>false</enabled>
129+
</snapshots>
130+
</repository>
131+
</repositories>
132+
<pluginRepositories>
133+
<pluginRepository>
134+
<id>spring-snapshots</id>
135+
<name>Spring Snapshots</name>
136+
<url>https://repo.spring.io/libs-snapshot-local</url>
137+
<snapshots>
138+
<enabled>true</enabled>
139+
</snapshots>
140+
<releases>
141+
<enabled>false</enabled>
142+
</releases>
143+
</pluginRepository>
144+
<pluginRepository>
145+
<id>spring-milestones</id>
146+
<name>Spring Milestones</name>
147+
<url>https://repo.spring.io/libs-milestone-local</url>
148+
<snapshots>
149+
<enabled>false</enabled>
150+
</snapshots>
151+
</pluginRepository>
152+
</pluginRepositories>
153+
</profile>
114154
</profiles>
115-
<repositories>
116-
<repository>
117-
<id>spring-snapshots</id>
118-
<name>Spring Snapshots</name>
119-
<url>https://repo.spring.io/libs-snapshot-local</url>
120-
</repository>
121-
<repository>
122-
<id>spring-milestones</id>
123-
<name>Spring milestones</name>
124-
<url>https://repo.spring.io/libs-milestone-local</url>
125-
</repository>
126-
<repository>
127-
<id>spring-releases</id>
128-
<name>Spring Releases</name>
129-
<url>https://repo.spring.io/release</url>
130-
</repository>
131-
</repositories>
132-
<pluginRepositories>
133-
<pluginRepository>
134-
<id>spring-snapshots</id>
135-
<name>Spring Snapshots</name>
136-
<url>https://repo.spring.io/snapshot</url>
137-
<snapshots>
138-
<enabled>true</enabled>
139-
</snapshots>
140-
</pluginRepository>
141-
<pluginRepository>
142-
<id>spring-milestones</id>
143-
<name>Spring Milestones</name>
144-
<url>https://repo.spring.io/milestone</url>
145-
<snapshots>
146-
<enabled>false</enabled>
147-
</snapshots>
148-
</pluginRepository>
149-
<pluginRepository>
150-
<id>spring-releases</id>
151-
<name>Spring Releases</name>
152-
<url>https://repo.spring.io/release</url>
153-
</pluginRepository>
154-
</pluginRepositories>
155155
<reporting>
156156
<plugins>
157157
<plugin>

bom/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,9 @@
131131
<snapshots>
132132
<enabled>true</enabled>
133133
</snapshots>
134+
<releases>
135+
<enabled>false</enabled>
136+
</releases>
134137
</repository>
135138
<repository>
136139
<id>spring-milestones</id>
@@ -157,6 +160,9 @@
157160
<snapshots>
158161
<enabled>true</enabled>
159162
</snapshots>
163+
<releases>
164+
<enabled>false</enabled>
165+
</releases>
160166
</pluginRepository>
161167
<pluginRepository>
162168
<id>spring-milestones</id>

bom/spring-cloud-starter-parent/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@
5353
<snapshots>
5454
<enabled>true</enabled>
5555
</snapshots>
56+
<releases>
57+
<enabled>false</enabled>
58+
</releases>
5659
</repository>
5760
<repository>
5861
<id>spring-milestones</id>
@@ -79,6 +82,9 @@
7982
<snapshots>
8083
<enabled>true</enabled>
8184
</snapshots>
85+
<releases>
86+
<enabled>false</enabled>
87+
</releases>
8288
</pluginRepository>
8389
<pluginRepository>
8490
<id>spring-milestones</id>

pom.xml

Lines changed: 45 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -183,9 +183,6 @@
183183
</plugins>
184184
</build>
185185
</profile>
186-
<profile>
187-
<id>spring</id>
188-
</profile>
189186
<profile>
190187
<id>coverage</id>
191188
<activation>
@@ -219,35 +216,50 @@
219216
</plugins>
220217
</build>
221218
</profile>
219+
<profile>
220+
<id>spring</id>
221+
<repositories>
222+
<repository>
223+
<id>spring-snapshots</id>
224+
<name>Spring Snapshots</name>
225+
<url>https://repo.spring.io/libs-snapshot-local</url>
226+
<snapshots>
227+
<enabled>true</enabled>
228+
</snapshots>
229+
<releases>
230+
<enabled>false</enabled>
231+
</releases>
232+
</repository>
233+
<repository>
234+
<id>spring-milestones</id>
235+
<name>Spring Milestones</name>
236+
<url>https://repo.spring.io/libs-milestone-local</url>
237+
<snapshots>
238+
<enabled>false</enabled>
239+
</snapshots>
240+
</repository>
241+
</repositories>
242+
<pluginRepositories>
243+
<pluginRepository>
244+
<id>spring-snapshots</id>
245+
<name>Spring Snapshots</name>
246+
<url>https://repo.spring.io/libs-snapshot-local</url>
247+
<snapshots>
248+
<enabled>true</enabled>
249+
</snapshots>
250+
<releases>
251+
<enabled>false</enabled>
252+
</releases>
253+
</pluginRepository>
254+
<pluginRepository>
255+
<id>spring-milestones</id>
256+
<name>Spring Milestones</name>
257+
<url>https://repo.spring.io/libs-milestone-local</url>
258+
<snapshots>
259+
<enabled>false</enabled>
260+
</snapshots>
261+
</pluginRepository>
262+
</pluginRepositories>
263+
</profile>
222264
</profiles>
223-
<repositories>
224-
<repository>
225-
<id>spring-snapshots</id>
226-
<name>Spring Snapshots</name>
227-
<url>https://repo.spring.io/snapshot</url>
228-
</repository>
229-
<repository>
230-
<id>spring-milestones</id>
231-
<name>Spring milestones</name>
232-
<url>https://repo.spring.io/milestone</url>
233-
</repository>
234-
</repositories>
235-
<pluginRepositories>
236-
<pluginRepository>
237-
<id>spring-snapshots</id>
238-
<name>Spring Snapshots</name>
239-
<url>https://repo.spring.io/snapshot</url>
240-
<snapshots>
241-
<enabled>true</enabled>
242-
</snapshots>
243-
</pluginRepository>
244-
<pluginRepository>
245-
<id>spring-milestones</id>
246-
<name>Spring Milestones</name>
247-
<url>https://repo.spring.io/milestone</url>
248-
<snapshots>
249-
<enabled>false</enabled>
250-
</snapshots>
251-
</pluginRepository>
252-
</pluginRepositories>
253265
</project>

0 commit comments

Comments
 (0)