Skip to content

Commit

Permalink
Update build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
Dankoy authored Feb 4, 2024
1 parent 1ec1bf5 commit d3246dc
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ plugins {
id 'io.spring.dependency-management' version '1.1.4'
}

apply plugin: "io.spring.dependency-management"

group = 'ru.dankoy'
version = '0.1.5-SNAPSHOT'

Expand All @@ -21,8 +23,15 @@ repositories {
mavenCentral()
}

ext {
set('springShellVersion', "3.1.3")
// Moved to bom to let dependabot check versions
// ext {
// set('springShellVersion', "3.2.0")
// }

dependencyManagement {
imports {
mavenBom "org.springframework.shell:spring-shell-dependencies:3.2.0"
}
}

dependencies {
Expand Down Expand Up @@ -54,12 +63,6 @@ dependencies {
testImplementation 'org.liquibase:liquibase-core'
}

dependencyManagement {
imports {
mavenBom "org.springframework.shell:spring-shell-dependencies:${springShellVersion}"
}
}

test {
useJUnitPlatform()
testLogging.showStandardStreams = true
Expand Down

0 comments on commit d3246dc

Please sign in to comment.