Skip to content

Commit 0ac2e98

Browse files
committed
Initial changes to update repositories
1 parent 3030699 commit 0ac2e98

8 files changed

Lines changed: 157 additions & 200 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 & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -85,11 +85,6 @@
8585
</build>
8686

8787
<profiles>
88-
<profile>
89-
<id>spring</id>
90-
91-
92-
</profile>
9388
<profile>
9489
<id>coverage</id>
9590
<activation>
@@ -123,55 +118,52 @@
123118
</plugins>
124119
</build>
125120
</profile>
121+
<profile>
122+
<id>spring</id>
123+
<repositories>
124+
<repository>
125+
<id>spring-snapshots</id>
126+
<name>Spring Snapshots</name>
127+
<url>https://repo.spring.io/libs-snapshot-local</url>
128+
<snapshots>
129+
<enabled>true</enabled>
130+
</snapshots>
131+
<releases>
132+
<enabled>false</enabled>
133+
</releases>
134+
</repository>
135+
<repository>
136+
<id>spring-milestones</id>
137+
<name>Spring Milestones</name>
138+
<url>https://repo.spring.io/libs-milestone-local</url>
139+
<snapshots>
140+
<enabled>false</enabled>
141+
</snapshots>
142+
</repository>
143+
</repositories>
144+
<pluginRepositories>
145+
<pluginRepository>
146+
<id>spring-snapshots</id>
147+
<name>Spring Snapshots</name>
148+
<url>https://repo.spring.io/libs-snapshot-local</url>
149+
<snapshots>
150+
<enabled>true</enabled>
151+
</snapshots>
152+
<releases>
153+
<enabled>false</enabled>
154+
</releases>
155+
</pluginRepository>
156+
<pluginRepository>
157+
<id>spring-milestones</id>
158+
<name>Spring Milestones</name>
159+
<url>https://repo.spring.io/libs-milestone-local</url>
160+
<snapshots>
161+
<enabled>false</enabled>
162+
</snapshots>
163+
</pluginRepository>
164+
</pluginRepositories>
165+
</profile>
126166
</profiles>
127-
<repositories>
128-
<repository>
129-
<id>spring-snapshots</id>
130-
<name>Spring Snapshots</name>
131-
<url>https://repo.spring.io/libs-snapshot-local</url>
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-
</repository>
138-
<repository>
139-
<id>rsocket-snapshots</id>
140-
<name>RSocket Snapshots</name>
141-
<url>https://oss.jfrog.org/oss-snapshot-local</url>
142-
<snapshots>
143-
<enabled>true</enabled>
144-
</snapshots>
145-
</repository>
146-
<repository>
147-
<id>spring-releases</id>
148-
<name>Spring Releases</name>
149-
<url>https://repo.spring.io/release</url>
150-
</repository>
151-
</repositories>
152-
<pluginRepositories>
153-
<pluginRepository>
154-
<id>spring-snapshots</id>
155-
<name>Spring Snapshots</name>
156-
<url>https://repo.spring.io/snapshot</url>
157-
<snapshots>
158-
<enabled>true</enabled>
159-
</snapshots>
160-
</pluginRepository>
161-
<pluginRepository>
162-
<id>spring-milestones</id>
163-
<name>Spring Milestones</name>
164-
<url>https://repo.spring.io/milestone</url>
165-
<snapshots>
166-
<enabled>false</enabled>
167-
</snapshots>
168-
</pluginRepository>
169-
<pluginRepository>
170-
<id>spring-releases</id>
171-
<name>Spring Releases</name>
172-
<url>https://repo.spring.io/release</url>
173-
</pluginRepository>
174-
</pluginRepositories>
175167
<reporting>
176168
<plugins>
177169
<plugin>

binders/pulsar-binder/pom.xml

Lines changed: 45 additions & 53 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,55 +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>rsocket-snapshots</id>
128-
<name>RSocket Snapshots</name>
129-
<url>https://oss.jfrog.org/oss-snapshot-local</url>
130-
<snapshots>
131-
<enabled>true</enabled>
132-
</snapshots>
133-
</repository>
134-
<repository>
135-
<id>spring-releases</id>
136-
<name>Spring Releases</name>
137-
<url>https://repo.spring.io/release</url>
138-
</repository>
139-
</repositories>
140-
<pluginRepositories>
141-
<pluginRepository>
142-
<id>spring-snapshots</id>
143-
<name>Spring Snapshots</name>
144-
<url>https://repo.spring.io/snapshot</url>
145-
<snapshots>
146-
<enabled>true</enabled>
147-
</snapshots>
148-
</pluginRepository>
149-
<pluginRepository>
150-
<id>spring-milestones</id>
151-
<name>Spring Milestones</name>
152-
<url>https://repo.spring.io/milestone</url>
153-
<snapshots>
154-
<enabled>false</enabled>
155-
</snapshots>
156-
</pluginRepository>
157-
<pluginRepository>
158-
<id>spring-releases</id>
159-
<name>Spring Releases</name>
160-
<url>https://repo.spring.io/release</url>
161-
</pluginRepository>
162-
</pluginRepositories>
163155
<reporting>
164156
<plugins>
165157
<plugin>

binders/rabbit-binder/pom.xml

Lines changed: 0 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -137,46 +137,4 @@
137137
</pluginRepositories>
138138
</profile>
139139
</profiles>
140-
<repositories>
141-
<repository>
142-
<id>spring-snapshots</id>
143-
<name>Spring Snapshots</name>
144-
<url>https://repo.spring.io/libs-snapshot-local</url>
145-
</repository>
146-
<repository>
147-
<id>spring-milestones</id>
148-
<name>Spring Milestones</name>
149-
<url>https://repo.spring.io/libs-milestone-local</url>
150-
</repository>
151-
<repository>
152-
<id>spring-releases</id>
153-
<name>Spring Releases</name>
154-
<url>https://repo.spring.io/release</url>
155-
</repository>
156-
<repository>
157-
<id>rsocket-snapshots</id>
158-
<name>RSocket Snapshots</name>
159-
<url>https://oss.jfrog.org/oss-snapshot-local</url>
160-
<snapshots>
161-
<enabled>true</enabled>
162-
</snapshots>
163-
</repository>
164-
</repositories>
165-
<pluginRepositories>
166-
<pluginRepository>
167-
<id>spring-snapshots</id>
168-
<name>Spring Snapshots</name>
169-
<url>https://repo.spring.io/libs-snapshot-local</url>
170-
</pluginRepository>
171-
<pluginRepository>
172-
<id>spring-milestones</id>
173-
<name>Spring Milestones</name>
174-
<url>https://repo.spring.io/libs-milestone-local</url>
175-
</pluginRepository>
176-
<pluginRepository>
177-
<id>spring-releases</id>
178-
<name>Spring Releases</name>
179-
<url>https://repo.spring.io/libs-release-local</url>
180-
</pluginRepository>
181-
</pluginRepositories>
182140
</project>

bom/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,9 @@
128128
<snapshots>
129129
<enabled>true</enabled>
130130
</snapshots>
131+
<releases>
132+
<enabled>false</enabled>
133+
</releases>
131134
</repository>
132135
<repository>
133136
<id>spring-milestones</id>
@@ -154,6 +157,9 @@
154157
<snapshots>
155158
<enabled>true</enabled>
156159
</snapshots>
160+
<releases>
161+
<enabled>false</enabled>
162+
</releases>
157163
</pluginRepository>
158164
<pluginRepository>
159165
<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>

0 commit comments

Comments
 (0)