Skip to content

Commit

Permalink
Fix the issue of classes not included in the generated jar file.
Browse files Browse the repository at this point in the history
  • Loading branch information
bmarty committed Mar 27, 2024
1 parent 860d509 commit b79748f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions kotlin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,15 @@ repositories {
mavenCentral()
}

// Need to add this for the classes to be included in the jar
sourceSets {
main {
java {
srcDirs("lib/src/main/java")
}
}
}

publishing {
publications {
mavenJava(MavenPublication) {
Expand Down

0 comments on commit b79748f

Please sign in to comment.