Нормальная модульная структура

This commit is contained in:
Roman Pytkov
2024-11-01 22:34:08 +03:00
parent b95666789c
commit 09210ff6f4
38 changed files with 381 additions and 49 deletions

1
lib/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
/build

9
lib/build.gradle.kts Normal file
View File

@@ -0,0 +1,9 @@
plugins {
id("java-library")
alias(libs.plugins.jetbrains.kotlin.jvm)
}
java {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}

View File

@@ -0,0 +1,5 @@
package com.example.lib
class MyClass {
val test: java.time.LocalDate;
}