Skip to content

Commit 3c275e4

Browse files
committed
Merge remote-tracking branch 'origin/4.2.x' into 4.3.x
Signed-off-by: Olga Maciaszek-Sharma <olga.maciaszek-sharma@broadcom.com> # Conflicts: # docs/package.json # docs/pom.xml # pom.xml # spring-cloud-consul-binder/pom.xml # spring-cloud-consul-config/pom.xml # spring-cloud-consul-core/pom.xml # spring-cloud-consul-dependencies/pom.xml # spring-cloud-consul-discovery/pom.xml # spring-cloud-consul-integration-tests/pom.xml # spring-cloud-consul-integration-tests/spring-cloud-consul-bootstrap-tests/pom.xml # spring-cloud-consul-integration-tests/spring-cloud-consul-configdata-retry-tests/pom.xml # spring-cloud-consul-integration-tests/spring-cloud-consul-configdata-tests/pom.xml # spring-cloud-starter-consul-all/pom.xml # spring-cloud-starter-consul-bus/pom.xml # spring-cloud-starter-consul-config/pom.xml # spring-cloud-starter-consul-discovery/pom.xml # spring-cloud-starter-consul/pom.xml
2 parents 4609294 + 115ffdd commit 3c275e4

152 files changed

Lines changed: 226 additions & 152 deletions

File tree

Some content is hidden

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

.github/workflows/deploy-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
# if: github.repository_owner == 'spring-cloud'
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
with:
2121
ref: docs-build
2222
fetch-depth: 1

.github/workflows/maven.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919
- name: Set up JDK
2020
uses: actions/setup-java@v4
2121
with:

pom.xml

Lines changed: 75 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<packaging>pom</packaging>
1111
<name>Spring Cloud Consul</name>
1212
<description>Spring Cloud Consul</description>
13+
<url>https://github.com/spring-cloud/spring-cloud-consul</url>
1314

1415
<parent>
1516
<groupId>org.springframework.cloud</groupId>
@@ -40,7 +41,64 @@
4041
</developerConnection>
4142
<tag>HEAD</tag>
4243
</scm>
43-
44+
<licenses>
45+
<license>
46+
<name>Apache License, Version 2.0</name>
47+
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
48+
</license>
49+
</licenses>
50+
<developers>
51+
<developer>
52+
<id>dsyer</id>
53+
<name>Dave Syer</name>
54+
<email>david.syer at broadcom.com</email>
55+
<organization>Broadcom, Inc.</organization>
56+
<organizationUrl>https://www.spring.io</organizationUrl>
57+
<roles>
58+
<role>lead</role>
59+
</roles>
60+
</developer>
61+
<developer>
62+
<id>sgibb</id>
63+
<name>Spencer Gibb</name>
64+
<email>spencer.gibb at broadcom.com</email>
65+
<organization>Broadcom, Inc.</organization>
66+
<organizationUrl>https://www.spring.io</organizationUrl>
67+
<roles>
68+
<role>lead</role>
69+
</roles>
70+
</developer>
71+
<developer>
72+
<id>mgrzejszczak</id>
73+
<name>Marcin Grzejszczak</name>
74+
<email>>marcin.grzejszczak at broadcom.com</email>
75+
<organization>Broadcom, Inc.</organization>
76+
<organizationUrl>https://www.spring.io</organizationUrl>
77+
<roles>
78+
<role>developer</role>
79+
</roles>
80+
</developer>
81+
<developer>
82+
<id>rbaxter</id>
83+
<name>Ryan Baxter</name>
84+
<email>ryan.baxter at broadcom.com</email>
85+
<organization>Broadcom, Inc.</organization>
86+
<organizationUrl>https://www.spring.io</organizationUrl>
87+
<roles>
88+
<role>developer</role>
89+
</roles>
90+
</developer>
91+
<developer>
92+
<id>omaciaszeksharma</id>
93+
<name>Olga Maciaszek-Sharma</name>
94+
<email>olga.maciaszek-sharma at broadcom.com</email>
95+
<organization>Broadcom, Inc.</organization>
96+
<organizationUrl>https://www.spring.io</organizationUrl>
97+
<roles>
98+
<role>developer</role>
99+
</roles>
100+
</developer>
101+
</developers>
44102
<modules>
45103
<module>spring-cloud-consul-dependencies</module>
46104
<module>spring-cloud-consul-core</module>
@@ -194,6 +252,22 @@
194252
</dependency>
195253
</dependencies>
196254
<profiles>
255+
<profile>
256+
<id>central</id>
257+
<build>
258+
<plugins>
259+
<plugin>
260+
<groupId>org.sonatype.central</groupId>
261+
<artifactId>central-publishing-maven-plugin</artifactId>
262+
<configuration>
263+
<excludeArtifacts>
264+
<artifact>spring-cloud-consul-integration-tests</artifact>
265+
</excludeArtifacts>
266+
</configuration>
267+
</plugin>
268+
</plugins>
269+
</build>
270+
</profile>
197271
<profile>
198272
<id>spring</id>
199273
<repositories>

spring-cloud-consul-binder/src/main/java/org/springframework/cloud/consul/binder/ConsulBinder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2019 the original author or authors.
2+
* Copyright 2013-present the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

spring-cloud-consul-binder/src/main/java/org/springframework/cloud/consul/binder/ConsulInboundMessageProducer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2024 the original author or authors.
2+
* Copyright 2013-present the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

spring-cloud-consul-binder/src/main/java/org/springframework/cloud/consul/binder/ConsulSendingHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2019 the original author or authors.
2+
* Copyright 2013-present the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

spring-cloud-consul-binder/src/main/java/org/springframework/cloud/consul/binder/EventService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2019 the original author or authors.
2+
* Copyright 2013-present the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

spring-cloud-consul-binder/src/main/java/org/springframework/cloud/consul/binder/config/ConsulBinderConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2019 the original author or authors.
2+
* Copyright 2013-present the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

spring-cloud-consul-binder/src/main/java/org/springframework/cloud/consul/binder/config/ConsulBinderProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2019 the original author or authors.
2+
* Copyright 2013-present the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

spring-cloud-consul-binder/src/test/java/org/springframework/cloud/consul/binder/ConsulBinderApplicationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2019 the original author or authors.
2+
* Copyright 2013-present the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)