39 lines
		
	
	
		
			906 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			906 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
| plugins {
 | |
|     id 'org.jetbrains.kotlin.jvm' version '1.3.72'
 | |
|     id 'org.jetbrains.kotlin.plugin.spring' version '1.3.72'
 | |
|     id 'org.springframework.boot' version '2.3.0.RELEASE'
 | |
|     id 'io.spring.dependency-management' version '1.0.9.RELEASE'
 | |
| }
 | |
| 
 | |
| group 'org.mosad'
 | |
| version '1.2.5'
 | |
| 
 | |
| repositories {
 | |
|     jcenter()
 | |
| }
 | |
| 
 | |
| dependencies {
 | |
|     implementation 'org.springframework.boot:spring-boot-starter-web'
 | |
|     implementation 'org.jetbrains.kotlin:kotlin-stdlib'
 | |
|     implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.7'
 | |
|     implementation 'org.jsoup:jsoup:1.13.1'
 | |
|     implementation 'com.google.code.gson:gson:2.8.6'
 | |
| 
 | |
|     testImplementation 'org.junit.jupiter:junit-jupiter:5.6.2'
 | |
| }
 | |
| 
 | |
| test {
 | |
|     useJUnitPlatform()
 | |
| 
 | |
|     testLogging {
 | |
|         events 'PASSED', 'FAILED', 'SKIPPED'
 | |
|     }
 | |
| }
 | |
| 
 | |
| compileKotlin {
 | |
|     kotlinOptions.jvmTarget = "11"
 | |
| }
 | |
| compileTestKotlin {
 | |
|     kotlinOptions.jvmTarget = "11"
 | |
| }
 |