Skip to content

Commit

Permalink
Add publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
vova7878 committed Aug 19, 2024
1 parent 4858479 commit e05f3ad
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
@@ -1,5 +1,6 @@
plugins {
id 'java-library'
id 'maven-publish'
}

java {
Expand All @@ -10,3 +11,15 @@ java {
dependencies {
implementation 'com.github.vova7878:AndroidMisc:v0.0.4'
}

publishing {
publications {
maven(MavenPublication) {
groupId project.group
artifactId project.name
version project.version

from components.java
}
}
}

0 comments on commit e05f3ad

Please sign in to comment.