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

Commit

Permalink
Dependency updates
Browse files Browse the repository at this point in the history
  • Loading branch information
sluehr committed Jul 8, 2021
1 parent c16bd78 commit 0e1b739
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 16 deletions.
23 changes: 10 additions & 13 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
plugins {
id 'com.palantir.git-version' version '0.12.3'
id 'java-library'
id 'io.freefair.lombok' version '5.1.1'
id 'maven-publish'
id 'signing'
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'com.github.jk1.dependency-license-report' version '1.14'
id 'org.sonarqube' version '3.1.1'
id 'org.sonarqube' version '3.3'
id 'jacoco'
}

apply plugin: 'io.freefair.lombok'
apply plugin: 'idea'

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

ext {
springBootVersion = '2.4.0'
lombokVersion = '1.18.20'
springBootVersion = '2.4.8'

junitVersion = '5.7.0'
mockitoVersion = '3.5.15'
junitVersion = '5.7.2'
mockitoVersion = '3.11.2'
}

dependencyManagement {
Expand All @@ -37,11 +36,15 @@ dependencyManagement {
dependencies {
api "org.springframework.boot:spring-boot-starter-security"

compileOnly "org.projectlombok:lombok:${lombokVersion}"
annotationProcessor "org.projectlombok:lombok:${lombokVersion}"
implementation "org.springframework.boot:spring-boot-starter-web"
implementation "org.springframework.boot:spring-boot-starter-data-jpa"
implementation "org.springframework.security.oauth.boot:spring-security-oauth2-autoconfigure:${springBootVersion}"
implementation "org.springframework.security:spring-security-config"

testCompileOnly "org.projectlombok:lombok:${lombokVersion}"
testAnnotationProcessor "org.projectlombok:lombok:${lombokVersion}"
testImplementation "org.junit.jupiter:junit-jupiter:${junitVersion}"
testImplementation "org.mockito:mockito-junit-jupiter:${mockitoVersion}"
testImplementation "org.springframework.boot:spring-boot-starter-test"
Expand All @@ -63,11 +66,5 @@ test {
useJUnitPlatform()
}

lombok {
version = '1.18.16'
generateLombokConfig.enabled = false
config['lombok.addLombokGeneratedAnnotation'] = 'true'
}

apply from: 'publishing.gradle'
apply from: 'sonar.gradle'
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ case "`uname`" in
Darwin* )
darwin=true
;;
MINGW* )
MSYS* | MINGW* )
msys=true
;;
NONSTOP* )
Expand Down
1 change: 0 additions & 1 deletion lombok.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# This file is generated by the 'io.freefair.lombok' Gradle plugin
config.stopBubbling = true
lombok.log.fieldName = LOGGER
lombok.addLombokGeneratedAnnotation = true
Expand Down

0 comments on commit 0e1b739

Please sign in to comment.