Skip to content

Commit

Permalink
build: artifacts 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
zinzoddari committed Dec 17, 2024
1 parent db28ae8 commit 874e74f
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
plugins {
id("java")
id("java-library")
id("maven-publish")
}

Expand All @@ -21,3 +22,17 @@ dependencies {
tasks.test {
useJUnitPlatform()
}

publishing {
publications {
create<MavenPublication>("release") {
groupId = group.toString()
artifactId = "excelmate"
version = version.toString()

afterEvaluate {
from(components["java"])
}
}
}
}

0 comments on commit 874e74f

Please sign in to comment.