Нормальная модульная структура
This commit is contained in:
1
lib/.gitignore
vendored
Normal file
1
lib/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
/build
|
||||
9
lib/build.gradle.kts
Normal file
9
lib/build.gradle.kts
Normal file
@@ -0,0 +1,9 @@
|
||||
plugins {
|
||||
id("java-library")
|
||||
alias(libs.plugins.jetbrains.kotlin.jvm)
|
||||
}
|
||||
|
||||
java {
|
||||
sourceCompatibility = JavaVersion.VERSION_21
|
||||
targetCompatibility = JavaVersion.VERSION_21
|
||||
}
|
||||
5
lib/src/main/java/com/example/lib/MyClass.kt
Normal file
5
lib/src/main/java/com/example/lib/MyClass.kt
Normal file
@@ -0,0 +1,5 @@
|
||||
package com.example.lib
|
||||
|
||||
class MyClass {
|
||||
val test: java.time.LocalDate;
|
||||
}
|
||||
Reference in New Issue
Block a user