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

This commit is contained in:
Roman Pytkov
2026-03-02 16:12:47 +03:00
parent 664b04e698
commit 7870987274
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;
}