Skip to content

Commit

Permalink
spring-dependencies 2.4 setup
Browse files Browse the repository at this point in the history
  • Loading branch information
akvone committed Sep 18, 2021
1 parent 53550fd commit 1ff036f
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
plugins {
id 'java'
id 'io.spring.dependency-management' version "1.0.11.RELEASE"
}

group 'com.akvone'
Expand All @@ -10,8 +11,21 @@ repositories {
}

dependencies {
implementation('org.apache.xmlrpc:xmlrpc-client')
implementation('com.fasterxml.jackson.core:jackson-databind')
}

test {
useJUnitPlatform()
}

dependencyManagement {
imports{
mavenBom("org.springframework.boot:spring-boot-dependencies:2.4.4")
}
dependencies {
dependency('org.apache.xmlrpc:xmlrpc-client:3.1.3') {
exclude 'junit:junit'
}
}
}

0 comments on commit 1ff036f

Please sign in to comment.