18 lines
436 B
Groovy
18 lines
436 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'org.springframework.boot' version '2.6.0'
|
|
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
|
|
}
|
|
|
|
group 'tech.nevets'
|
|
version '1.0'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.google.code.gson:gson:2.8.9'
|
|
implementation group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: '1.52'
|
|
implementation 'org.springframework.boot:spring-boot-starter'
|
|
} |