Skip to content

Commit

Permalink
Fix publication
Browse files Browse the repository at this point in the history
  • Loading branch information
Seggan committed Nov 8, 2023
1 parent 5a8ba9c commit 2e2abb8
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions metis-lang/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,15 @@ plugins {
tasks.dokkaHtml {
moduleName.set("metis-lang")
outputDirectory.set(rootDir.resolve("gendocs/javadocs"))
}

publishing {
publications {
create<MavenPublication>("maven") {
groupId = "io.github.seggan"
artifactId = "metis-lang"
version = rootProject.version.toString()
from(components["java"])
}
}
}

0 comments on commit 2e2abb8

Please sign in to comment.