Skip to content

Commit

Permalink
build: added publishing configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
eugenelesnov committed Oct 16, 2021
1 parent 12f7247 commit fbb7eb4
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,17 @@ dependencies {

test {
useJUnitPlatform()
}

publishing {
publications {
library(MavenPublication) {
from components.java
}
}
repositories {
maven {
url = uri("${buildDir}/publishing-repository")
}
}
}

0 comments on commit fbb7eb4

Please sign in to comment.