This commit refactors the Gradle build with the following: * use of the dependency management plugin * import the Spring Boot BOM for dependency management * add support for publishing artifacts
41 lines
800 B
Groovy
41 lines
800 B
Groovy
plugins {
|
|
id 'org.springframework.boot' version '2.3.3.RELEASE' apply false
|
|
}
|
|
|
|
subprojects {
|
|
apply plugin: 'java-library'
|
|
apply plugin: 'io.spring.dependency-management'
|
|
apply plugin: 'maven'
|
|
|
|
group = 'org.springframework.experimental'
|
|
version = "0.1.0-SNAPSHOT"
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencyManagement {
|
|
imports {
|
|
mavenBom org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES
|
|
}
|
|
dependencies {
|
|
dependency 'com.graphql-java:graphql-java:15.0'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
testLogging {
|
|
events "passed", "skipped", "failed"
|
|
}
|
|
}
|
|
|
|
apply from: "${rootDir}/gradle/publishing.gradle"
|
|
}
|