Skip to content
This repository was archived by the owner on Nov 29, 2021. It is now read-only.

Commit 0e1b739

Browse files
committed
Dependency updates
1 parent c16bd78 commit 0e1b739

File tree

5 files changed

+12
-16
lines changed

5 files changed

+12
-16
lines changed

build.gradle

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
plugins {
22
id 'com.palantir.git-version' version '0.12.3'
33
id 'java-library'
4-
id 'io.freefair.lombok' version '5.1.1'
54
id 'maven-publish'
65
id 'signing'
7-
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
6+
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
87
id 'com.github.jk1.dependency-license-report' version '1.14'
9-
id 'org.sonarqube' version '3.1.1'
8+
id 'org.sonarqube' version '3.3'
109
id 'jacoco'
1110
}
1211

13-
apply plugin: 'io.freefair.lombok'
1412
apply plugin: 'idea'
1513

1614
group = 'engineering.everest.starterkit'
@@ -22,10 +20,11 @@ version = gitTagVersion.commitDistance == 0
2220
: "${gitTagVersion.lastTag}+${gitTagVersion.commitDistance}-SNAPSHOT"
2321

2422
ext {
25-
springBootVersion = '2.4.0'
23+
lombokVersion = '1.18.20'
24+
springBootVersion = '2.4.8'
2625

27-
junitVersion = '5.7.0'
28-
mockitoVersion = '3.5.15'
26+
junitVersion = '5.7.2'
27+
mockitoVersion = '3.11.2'
2928
}
3029

3130
dependencyManagement {
@@ -37,11 +36,15 @@ dependencyManagement {
3736
dependencies {
3837
api "org.springframework.boot:spring-boot-starter-security"
3938

39+
compileOnly "org.projectlombok:lombok:${lombokVersion}"
40+
annotationProcessor "org.projectlombok:lombok:${lombokVersion}"
4041
implementation "org.springframework.boot:spring-boot-starter-web"
4142
implementation "org.springframework.boot:spring-boot-starter-data-jpa"
4243
implementation "org.springframework.security.oauth.boot:spring-security-oauth2-autoconfigure:${springBootVersion}"
4344
implementation "org.springframework.security:spring-security-config"
4445

46+
testCompileOnly "org.projectlombok:lombok:${lombokVersion}"
47+
testAnnotationProcessor "org.projectlombok:lombok:${lombokVersion}"
4548
testImplementation "org.junit.jupiter:junit-jupiter:${junitVersion}"
4649
testImplementation "org.mockito:mockito-junit-jupiter:${mockitoVersion}"
4750
testImplementation "org.springframework.boot:spring-boot-starter-test"
@@ -63,11 +66,5 @@ test {
6366
useJUnitPlatform()
6467
}
6568

66-
lombok {
67-
version = '1.18.16'
68-
generateLombokConfig.enabled = false
69-
config['lombok.addLombokGeneratedAnnotation'] = 'true'
70-
}
71-
7269
apply from: 'publishing.gradle'
7370
apply from: 'sonar.gradle'

gradle/wrapper/gradle-wrapper.jar

333 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

gradlew

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ case "`uname`" in
7272
Darwin* )
7373
darwin=true
7474
;;
75-
MINGW* )
75+
MSYS* | MINGW* )
7676
msys=true
7777
;;
7878
NONSTOP* )

lombok.config

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# This file is generated by the 'io.freefair.lombok' Gradle plugin
21
config.stopBubbling = true
32
lombok.log.fieldName = LOGGER
43
lombok.addLombokGeneratedAnnotation = true

0 commit comments

Comments
 (0)