Skip to content

Commit ce08973

Browse files
committed
Add module for kotlin extension
1 parent c17ac90 commit ce08973

File tree

6 files changed

+37
-2
lines changed

6 files changed

+37
-2
lines changed

.idea/gradle.xml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/kotlinc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
plugins {
2+
`java-library`
3+
}
4+
5+
sourceSets {
6+
main {
7+
java.setSrcDirs(listOf("src"))
8+
resources.setSrcDirs(emptyList<String>())
9+
}
10+
test {
11+
java.setSrcDirs(emptyList<String>())
12+
resources.setSrcDirs(emptyList<String>())
13+
}
14+
}

honey-kt-extension/build.gradle.kts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
plugins {
2+
`honey-kotlin`
3+
`honey-publish`
4+
`honey-repositories`
5+
kotlin("jvm") version "2.0.21"
6+
}
7+
8+
honeyPublish {
9+
artifactId = "honey-kt-extension"
10+
}
11+
12+
kotlin {
13+
jvmToolchain(17)
14+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
package dev.shiza.honey
2+
3+
class dispatcher {
4+
}

settings.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
rootProject.name = "honey"
22
include(":honey-common")
3+
include(":honey-kt-extension")
4+
35
// Uncomment in case if you would like to run test plugin
4-
// include(":honey-test-plugin")
6+
// include(":honey-test-plugin")

0 commit comments

Comments
 (0)