расчет ПУУД

This commit is contained in:
emelianov
2026-06-04 09:39:27 +03:00
parent 78887dd63a
commit faedd21f43
12 changed files with 1162 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
plugins {
kotlin("jvm")
id("io.spring.dependency-management")
jacoco
}
group = "space.nstart.pcp"
version = "1.0.0"
kotlin {
jvmToolchain((property("versions.java") as String).toInt())
compilerOptions {
freeCompilerArgs.addAll("-Xjsr305=strict")
jvmTarget.set(org.jetbrains.kotlin.gradle.dsl.JvmTarget.fromTarget(property("versions.java") as String))
}
}
dependencies {
api(project(":libs:ballistics-lib"))
testImplementation("org.jetbrains.kotlin:kotlin-test-junit5")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
}
dependencyManagement {
imports {
mavenBom("org.springframework.boot:spring-boot-dependencies:${property("versions_spring_boot")}")
}
}
tasks.withType<Test> {
useJUnitPlatform()
}