Skip to content

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 9312bf1 commit 82dfbba
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 18 deletions.
30 changes: 13 additions & 17 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
plugins {
id 'com.palantir.git-version' version '0.12.3'
id 'io.freefair.lombok' version '5.1.1'
id 'java-library'
id 'maven-publish'
id 'signing'
id 'idea'
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
id 'org.sonarqube' version '3.1.1'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'org.sonarqube' version '3.3'
id 'jacoco'
}

apply plugin: 'io.freefair.lombok'

group = 'engineering.everest.starterkit'
sourceCompatibility = '1.11'

Expand All @@ -21,14 +18,15 @@ version = gitTagVersion.commitDistance == 0
: "${gitTagVersion.lastTag}+${gitTagVersion.commitDistance}-SNAPSHOT"

ext {
storageVersion = '0.9.5'
storageVersion = '0.9.7'

metadataExtractorVersion = '2.15.0'
springBootVersion = '2.4.0'
thumbnailatorVersion = '0.4.13'
lombokVersion = '1.18.20'
metadataExtractorVersion = '2.16.0'
springBootVersion = '2.4.8'
thumbnailatorVersion = '0.4.14'

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

Expand All @@ -41,10 +39,14 @@ dependencyManagement {
dependencies {
api "engineering.everest.starterkit:storage:${storageVersion}"

compileOnly "org.projectlombok:lombok:${lombokVersion}"
annotationProcessor "org.projectlombok:lombok:${lombokVersion}"
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation "net.coobird:thumbnailator:${thumbnailatorVersion}"
implementation "com.drewnoakes:metadata-extractor:${metadataExtractorVersion}"

testCompileOnly "org.projectlombok:lombok:${lombokVersion}"
testAnnotationProcessor "org.projectlombok:lombok:${lombokVersion}"
testImplementation 'org.springframework:spring-test'
testImplementation 'org.springframework.boot:spring-boot-test-autoconfigure'
testImplementation "org.junit.jupiter:junit-jupiter:${junitVersion}"
Expand All @@ -68,11 +70,5 @@ test {
useJUnitPlatform()
}

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

apply from: 'publishing.gradle'
apply from: 'sonar.gradle'
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

0 comments on commit 82dfbba

Please sign in to comment.