Skip to content

Commit

Permalink
Intermediate commit
Browse files Browse the repository at this point in the history
  • Loading branch information
li-advait committed Nov 8, 2024
1 parent b115ef8 commit c86595f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ buildscript {
google()
mavenCentral()
jcenter()
mavenLocal()
}

dependencies {
Expand Down
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,4 @@ android.useAndroidX=true
GROUP_ID=com.linkedin.shaky
VERSION_NAME=3.0.7-SNAPSHOT
android.defaults.buildfeatures.buildconfig=true
android.nonTransitiveRClass=false
android.nonFinalResIds=false
9 changes: 6 additions & 3 deletions gradle/publishing.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,13 @@ afterEvaluate {
publishing {
publications {
maven(MavenPublication) {
from components.findByName('release') ?: components.findByName('debug')

artifact sourcesJar
artifact javadocJar
artifact(tasks.sourcesJar) {
classifier = 'sources'
}
artifact(tasks.javadocJar) {
classifier = 'javadoc'
}

pom {
name = 'Shaky'
Expand Down
6 changes: 3 additions & 3 deletions shaky/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ android {
}
}

lintOptions {
abortOnError true
}

resourcePrefix 'shaky_'
namespace 'com.linkedin.android.shaky'
lint {
abortOnError true
}
}

dependencies {
Expand Down

0 comments on commit c86595f

Please sign in to comment.