The API backend for https://git.mosad.xyz/Seil0/ProjectLaogai
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.0 KiB
42 lines
1.0 KiB
|
|
buildscript { |
|
ext.kotlin_version = '1.3.21' |
|
ext.spring_boot_version = '2.1.0.RELEASE' |
|
|
|
repositories { |
|
jcenter() |
|
} |
|
|
|
dependencies { |
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" |
|
classpath "org.jetbrains.kotlin:kotlin-allopen:$kotlin_version" |
|
classpath "org.jsoup:jsoup:1.11.3" |
|
classpath "org.springframework.boot:spring-boot-gradle-plugin:$spring_boot_version" |
|
} |
|
} |
|
|
|
apply plugin: 'kotlin' |
|
apply plugin: 'kotlin-spring' |
|
apply plugin: 'org.springframework.boot' |
|
apply plugin: 'io.spring.dependency-management' |
|
|
|
repositories { |
|
jcenter() |
|
} |
|
|
|
dependencies { |
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" |
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.1.1" |
|
implementation 'org.jsoup:jsoup:1.11.3' |
|
implementation 'org.springframework.boot:spring-boot-starter-web' |
|
} |
|
|
|
compileKotlin { |
|
kotlinOptions.jvmTarget = "1.8" |
|
} |
|
compileTestKotlin { |
|
kotlinOptions.jvmTarget = "1.8" |
|
} |
|
|
|
group 'org.mosad' |
|
version '1.0.2'
|
|
|