Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Merge pull request grpc-ecosystem#296 from ST-DDT/update-dependencies
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
yidongnan committed Nov 8, 2019
2 parents 9d4975c + ccb9b52 commit 73d71d6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ buildscript {
ext {
projectVersion = '2.6.0-SNAPSHOT'

grpcVersion = '1.24.1'
grpcVersion = '1.24.2'
protobufVersion = '3.10.0'
protobufGradlePluginVersion = '0.8.10'

springBootVersion = '2.2.0.RELEASE'
springBootVersion = '2.2.1.RELEASE'
springCloudVersion = 'Hoxton.RC1'
springCloudAlibabaNacosVersion = '2.1.0.RELEASE'
braveInstrumentationGrpc = '5.8.0'
braveInstrumentationGrpc = '5.9.0'

lombokVersion = '1.18.10'
}
Expand All @@ -32,7 +32,7 @@ buildscript {
}

plugins {
id "net.nemerosa.versioning" version "2.8.2"
id "net.nemerosa.versioning" version "2.9.0"
id "io.franzbecker.gradle-lombok" version "3.2.0" apply false
id "com.gradle.build-scan" version "3.0"
id "com.github.ben-manes.versions" version "0.27.0" // gradle dependencyUpdates (Takes quite some time)
Expand Down
2 changes: 1 addition & 1 deletion docs/en/versions.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Current version.

| Version | spring-boot | gRPC | Date |
|:-------:|:-----------:|:----:| ---: |
| 2.6.0 * | 2.2.0 | 1.24.1 | TBA |
| 2.6.0 * | 2.2.1 | 1.24.2 | TBA |
| 2.5.1 | 2.1.6 | 1.22.2 | Aug, 2019 |
| 2.5.0 | 2.1.6 | 1.22.1 | Aug, 2019 |
| 2.4.0 | 2.1.5 | 1.20.0 | Jun, 2019 |
Expand Down
10 changes: 5 additions & 5 deletions examples/security-grpc-bearerAuth-server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ apply plugin: 'org.springframework.boot'
dependencies {
compile('org.springframework.boot:spring-boot-starter')
compile('org.springframework.security:spring-security-config')
compile('org.springframework.security:spring-security-oauth2-client:5.2.0.RELEASE')
compile('org.springframework.security:spring-security-oauth2-client:5.2.1.RELEASE')
compile project(':grpc-server-spring-boot-starter') // replace to compile("net.devh:grpc-server-spring-boot-starter:${springBootGrpcVersion}")
compile project(':examples:grpc-lib')
compile('com.nimbusds:nimbus-jose-jwt:8.2')
compile('com.nimbusds:nimbus-jose-jwt:8.2.1')
compile('org.springframework.security.oauth:spring-security-oauth2:2.3.7.RELEASE')
compile('org.springframework.security:spring-security-web')
compile('org.springframework.security:spring-security-oauth2-resource-server:5.2.0.RELEASE')
compile('org.springframework.security:spring-security-oauth2-jose:5.2.0.RELEASE')
compile('org.springframework.security:spring-security-oauth2-core:5.2.0.RELEASE')
compile('org.springframework.security:spring-security-oauth2-resource-server:5.2.1.RELEASE')
compile('org.springframework.security:spring-security-oauth2-jose:5.2.1.RELEASE')
compile('org.springframework.security:spring-security-oauth2-core:5.2.1.RELEASE')
}

buildscript {
Expand Down
1 change: 1 addition & 0 deletions testExamples.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash
set -e # Fail on error
./gradlew clean --console=plain
./gradlew build --console=plain
sleep 2s
Expand Down

0 comments on commit 73d71d6

Please sign in to comment.