42 lines
1.1 KiB
Groovy
42 lines
1.1 KiB
Groovy
buildscript {
|
|
ext {
|
|
springBootVersion = '2.3.1.RELEASE'
|
|
}
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
|
|
}
|
|
}
|
|
|
|
apply plugin: 'java'
|
|
apply plugin: 'eclipse'
|
|
apply plugin: 'org.springframework.boot'
|
|
apply plugin: 'io.spring.dependency-management'
|
|
|
|
group = 'io.reflectoring'
|
|
version = '0.0.1-SNAPSHOT'
|
|
sourceCompatibility = 11
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation('org.springframework.boot:spring-boot-starter-data-jpa')
|
|
implementation('org.springframework.boot:spring-boot-starter-validation')
|
|
implementation('org.springframework.boot:spring-boot-starter-web')
|
|
runtimeOnly('com.h2database:h2')
|
|
testImplementation('org.springframework.boot:spring-boot-starter-test')
|
|
testImplementation('org.junit.jupiter:junit-jupiter-engine:5.0.1')
|
|
|
|
// these dependencies are needed when running with Java 11, since they
|
|
// are no longer part of the JDK
|
|
implementation('javax.xml.bind:jaxb-api:2.3.1')
|
|
implementation('org.javassist:javassist:3.23.1-GA')
|
|
}
|
|
|
|
test{
|
|
useJUnitPlatform()
|
|
} |