39 lines
1.0 KiB
Groovy
39 lines
1.0 KiB
Groovy
|
plugins {
|
||
|
id 'org.springframework.boot' version '2.2.4.RELEASE'
|
||
|
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
|
||
|
id 'java'
|
||
|
}
|
||
|
|
||
|
group = 'pl.edu.amu.wmi'
|
||
|
version = '0.0.1-SNAPSHOT'
|
||
|
sourceCompatibility = '11'
|
||
|
|
||
|
configurations {
|
||
|
compileOnly {
|
||
|
extendsFrom annotationProcessor
|
||
|
}
|
||
|
}
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation 'org.springframework.boot:spring-boot-starter-actuator'
|
||
|
implementation 'org.springframework.boot:spring-boot-starter-data-mongodb'
|
||
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
||
|
implementation 'org.springframework.boot:spring-boot-starter-security'
|
||
|
implementation 'com.auth0:java-jwt:3.4.0'
|
||
|
implementation 'org.openpnp:opencv:3.2.0-0'
|
||
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
||
|
testImplementation('org.junit.jupiter:junit-jupiter-api')
|
||
|
testRuntimeOnly('org.junit.jupiter:junit-jupiter-engine')
|
||
|
testCompile('org.junit.jupiter:junit-jupiter-params')
|
||
|
}
|
||
|
|
||
|
test {
|
||
|
useJUnitPlatform{
|
||
|
includeEngines 'junit-jupiter'
|
||
|
}
|
||
|
}
|