35 lines
		
	
	
		
			812 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			812 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| plugins {
 | |
|     kotlin("jvm") version "2.2.10"
 | |
|     kotlin("plugin.serialization") version "2.2.20"
 | |
| }
 | |
| 
 | |
| group = "moe.rosa"
 | |
| version = "0.1.0"
 | |
| 
 | |
| repositories {
 | |
|     mavenCentral()
 | |
| }
 | |
| 
 | |
| dependencies {
 | |
|     testImplementation(kotlin("test"))
 | |
|     implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.9.0")
 | |
|     implementation(kotlin("reflect"))
 | |
| }
 | |
| kotlin {
 | |
|     jvmToolchain(24)
 | |
| }
 | |
| 
 | |
| tasks.build.configure {
 | |
|     dependsOn(":plt-build-wrapper:compileGo")
 | |
|     dependsOn(":plt-fetch:compileGo")
 | |
|     dependsOn(":plt-pkg:compileGo")
 | |
|     dependsOn(":plt-server:compileGo")
 | |
|     dependsOn(":plt-updated:compileGo")
 | |
| }
 | |
| tasks.test.configure {
 | |
|     dependsOn(":plt-build-wrapper:testGo")
 | |
|     dependsOn(":plt-fetch:testGo")
 | |
|     dependsOn(":plt-pkg:testGo")
 | |
|     dependsOn(":plt-server:testGo")
 | |
|     dependsOn(":plt-updated:testGo")
 | |
| } |