Skip to content

Commit

Permalink
add maven settings
Browse files Browse the repository at this point in the history
  • Loading branch information
Sinan Kozak committed Jun 3, 2021
1 parent e7abbe0 commit 1776e9f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions android-lints/build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import org.gradle.api.publish.maven.MavenPublication

apply plugin: 'com.android.library'
apply plugin: 'maven-publish'

Expand All @@ -15,6 +17,20 @@ android {
}
}

afterEvaluate {
publishing {
publications {
release(MavenPublication) {
groupId = "com.kozaxinan.android-lints"
artifactId = "android-lints"

from components.release
}
}
}
}


dependencies {
lintPublish project(':checks')
}

0 comments on commit 1776e9f

Please sign in to comment.