Skip to content

Commit

Permalink
Add Maven publish task
Browse files Browse the repository at this point in the history
  • Loading branch information
solkin committed Jan 8, 2024
1 parent dbcb61b commit 89a9a3a
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions imageloader/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,17 @@ dependencies {
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
}

afterEvaluate {
publishing {
publications {
release(MavenPublication) {
from components.release

groupId = 'com.tomclaw.imageloader'
artifactId = 'imageloader'
version = '0.9.4'
}
}
}
}

0 comments on commit 89a9a3a

Please sign in to comment.