Skip to content

Commit

Permalink
Revert changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Bartosz Litwiniuk committed Jun 6, 2024
1 parent b4e8768 commit b87e698
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion backtrace-library/publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@ afterEvaluate { project ->
publishing {
publications {
release(MavenPublication) {
from components.findByName('release')
groupId GROUP
artifactId POM_ARTIFACT_ID
version version
from components.release
}
}

Expand Down Expand Up @@ -111,10 +111,12 @@ afterEvaluate { project ->
}

task androidJavadocsJar(type: Jar, dependsOn: androidJavadocs) {
classifier = 'javadoc'
from androidJavadocs.destinationDir
}

task androidSourcesJar(type: Jar) {
classifier = 'sources'
from android.sourceSets.main.java.source
}
}
Expand Down

0 comments on commit b87e698

Please sign in to comment.