|
|
@@ -2,17 +2,20 @@ plugins { |
|
|
|
id 'java' |
|
|
|
id 'org.springframework.boot' version '3.1.1' |
|
|
|
id 'io.spring.dependency-management' version '1.1.0' |
|
|
|
id 'org.jetbrains.kotlin.jvm' |
|
|
|
} |
|
|
|
|
|
|
|
group = 'com.ffii' |
|
|
|
version = '0.0.1-SNAPSHOT' |
|
|
|
|
|
|
|
java { |
|
|
|
sourceCompatibility = '17' |
|
|
|
} |
|
|
|
|
|
|
|
repositories { |
|
|
|
mavenCentral() |
|
|
|
maven { |
|
|
|
url 'https://jaspersoft.jfrog.io/jaspersoft/third-party-ce-artifacts/' |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
dependencies { |
|
|
@@ -47,6 +50,8 @@ dependencies { |
|
|
|
|
|
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test' |
|
|
|
testImplementation 'org.springframework.security:spring-security-test' |
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" |
|
|
|
implementation "org.jetbrains.kotlin:kotlin-reflect" |
|
|
|
} |
|
|
|
|
|
|
|
configurations { |
|
|
@@ -54,3 +59,6 @@ configurations { |
|
|
|
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging' |
|
|
|
} |
|
|
|
} |
|
|
|
kotlin { |
|
|
|
jvmToolchain(17) |
|
|
|
} |