Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
[![Maven Central](https://img.shields.io/maven-central/v/no.entur.logging.cloud/api.svg)](https://mvnrepository.com/artifact/no.entur.logging.cloud)

# This is the 5.x legacy branch
For the latest version, see the main branch.

This branch vs later versions:
* Spring Boot 3.5.x support
* Uses [Ecosystem gRPC](https://github.com/grpc-ecosystem/grpc-spring)

# cloud-logging
Logging libraries for JVM applications. Goals

Expand Down
14 changes: 7 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {

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

grpcNettyVersion = '1.78.0'
grpcVersion = '1.78.0'
grpcCommonsVersion = '2.65.0'
grpcProtobufVersion = '4.33.4'
grpcNettyVersion = '1.79.0'
grpcVersion = '1.79.0'
grpcCommonsVersion = '2.66.0'
grpcProtobufVersion = '4.33.5'
ecosystemGrpcVersion = '3.1.0.RELEASE'

jsonAssertVersion = '0.8.0'
Expand Down Expand Up @@ -321,7 +321,7 @@ jreleaser {
github {
skipTag = false // Skip creating a new github tag?
skipRelease = true // Skip creating a new github release?
tagName = "v${version}"
tagName = "legacy-v${version}"
}
}
}
2 changes: 1 addition & 1 deletion examples/azure-grpc-ecosystem-example/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'org.springframework.boot' version '3.5.7'
id 'org.springframework.boot' version '3.5.11'
id "com.google.protobuf" version "0.9.6"
}

Expand Down
2 changes: 1 addition & 1 deletion examples/azure-web-example/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'org.springframework.boot' version '3.5.7'
id 'org.springframework.boot' version '3.5.11'
}

test {
Expand Down
2 changes: 1 addition & 1 deletion examples/gcp-async-web-example/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'org.springframework.boot' version '3.5.7'
id 'org.springframework.boot' version '3.5.11'
}

test {
Expand Down
2 changes: 1 addition & 1 deletion examples/gcp-grpc-ecosystem-example/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'org.springframework.boot' version '3.5.7'
id 'org.springframework.boot' version '3.5.11'
id "com.google.protobuf" version "0.9.6"
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'org.springframework.boot' version '3.5.7'
id 'org.springframework.boot' version '3.5.11'
id "com.google.protobuf" version "0.9.6"
}

Expand Down
2 changes: 1 addition & 1 deletion examples/gcp-web-apache-client-example/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'org.springframework.boot' version '3.5.7'
id 'org.springframework.boot' version '3.5.11'
}

test {
Expand Down
2 changes: 1 addition & 1 deletion examples/gcp-web-example/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'org.springframework.boot' version '3.5.7'
id 'org.springframework.boot' version '3.5.11'
}

test {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'org.springframework.boot' version '3.5.7'
id 'org.springframework.boot' version '3.5.11'
}

test {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'org.springframework.boot' version '3.5.7'
id 'org.springframework.boot' version '3.5.11'
}

test {
Expand Down