Skip to content

Commit b10e282

Browse files
authored
Adjust publishing/docs for legacy branch, bump Spring (#303)
1 parent f8f258c commit b10e282

File tree

11 files changed

+23
-16
lines changed

11 files changed

+23
-16
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
[![Maven Central](https://img.shields.io/maven-central/v/no.entur.logging.cloud/api.svg)](https://mvnrepository.com/artifact/no.entur.logging.cloud)
22

3+
# This is the 5.x legacy branch
4+
For the latest version, see the main branch.
5+
6+
This branch vs later versions:
7+
* Spring Boot 3.5.x support
8+
* Uses [Ecosystem gRPC](https://github.com/grpc-ecosystem/grpc-spring)
9+
310
# cloud-logging
411
Logging libraries for JVM applications. Goals
512

build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77

88
// Define version variables at root level so they're available everywhere
99
ext {
10-
springBootVersion = '3.5.9' // https://repo1.maven.org/maven2/org/springframework/boot/spring-boot-dependencies/
10+
springBootVersion = '3.5.11' // https://repo1.maven.org/maven2/org/springframework/boot/spring-boot-dependencies/
1111
// The following versions are managed by Spring Boot BOM (no need to define here):
1212
// junitJupiterVersion, mockitoVersion, slf4jVersion, logbackVersion,
1313
// jacksonVersion, jacksonDatabindVersion, micrometerVersion, janinoVersion,
@@ -22,12 +22,12 @@ ext {
2222
logbackLogstashSyntaxHighlightingDecoratorsVersion = '1.1.1'
2323
commonsIoVersion = '2.21.0'
2424
commonsTextVersion = '1.15.0'
25-
nettyTcnativeBoringsslStaticVersion = '2.0.74.Final'
25+
nettyTcnativeBoringsslStaticVersion = '2.0.75.Final'
2626

27-
grpcNettyVersion = '1.78.0'
28-
grpcVersion = '1.78.0'
29-
grpcCommonsVersion = '2.65.0'
30-
grpcProtobufVersion = '4.33.4'
27+
grpcNettyVersion = '1.79.0'
28+
grpcVersion = '1.79.0'
29+
grpcCommonsVersion = '2.66.0'
30+
grpcProtobufVersion = '4.33.5'
3131
ecosystemGrpcVersion = '3.1.0.RELEASE'
3232

3333
jsonAssertVersion = '0.8.0'
@@ -321,7 +321,7 @@ jreleaser {
321321
github {
322322
skipTag = false // Skip creating a new github tag?
323323
skipRelease = true // Skip creating a new github release?
324-
tagName = "v${version}"
324+
tagName = "legacy-v${version}"
325325
}
326326
}
327327
}

examples/azure-grpc-ecosystem-example/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'org.springframework.boot' version '3.5.7'
2+
id 'org.springframework.boot' version '3.5.11'
33
id "com.google.protobuf" version "0.9.6"
44
}
55

examples/azure-web-example/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'org.springframework.boot' version '3.5.7'
2+
id 'org.springframework.boot' version '3.5.11'
33
}
44

55
test {

examples/gcp-async-web-example/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'org.springframework.boot' version '3.5.7'
2+
id 'org.springframework.boot' version '3.5.11'
33
}
44

55
test {

examples/gcp-grpc-ecosystem-example/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'org.springframework.boot' version '3.5.7'
2+
id 'org.springframework.boot' version '3.5.11'
33
id "com.google.protobuf" version "0.9.6"
44
}
55

examples/gcp-grpc-ecosystem-without-test-artifacts-example/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'org.springframework.boot' version '3.5.7'
2+
id 'org.springframework.boot' version '3.5.11'
33
id "com.google.protobuf" version "0.9.6"
44
}
55

examples/gcp-web-apache-client-example/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'org.springframework.boot' version '3.5.7'
2+
id 'org.springframework.boot' version '3.5.11'
33
}
44

55
test {

examples/gcp-web-example/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'org.springframework.boot' version '3.5.7'
2+
id 'org.springframework.boot' version '3.5.11'
33
}
44

55
test {

examples/gcp-web-without-test-artifacts-example/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'org.springframework.boot' version '3.5.7'
2+
id 'org.springframework.boot' version '3.5.11'
33
}
44

55
test {

0 commit comments

Comments
 (0)