Skip to content

Commit 170dfb0

Browse files
committed
🙈 i just want to build core
``` sdk use java 11.0.26-tem ./gradlew :core:clean :core:build :core:jar :core:publishToMavenLocal ```
1 parent 1a8a490 commit 170dfb0

File tree

4 files changed

+5
-115
lines changed

4 files changed

+5
-115
lines changed

android/build.gradle

Lines changed: 0 additions & 81 deletions
This file was deleted.

gradle/artifacts-android.gradle

Lines changed: 0 additions & 25 deletions
This file was deleted.

gradle/codecov.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ task codeCoverageReport(type: JacocoReport) {
2929
executionData.setFrom(execData)
3030

3131
reports {
32-
xml.enabled true
32+
xml.required.set(true)
3333
xml.destination file("${buildDir}/reports/jacoco/report.xml")
34-
html.enabled true
35-
csv.enabled false
34+
html.required.set(true)
35+
csv.required.set(true)
3636
}
3737
}

gradle/mvn-publish.gradle

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
apply plugin: 'maven-publish'
2-
apply plugin: 'signing'
32

43
publishing {
54
publications {
@@ -75,10 +74,7 @@ publishing {
7574
}
7675

7776

78-
signing {
79-
sign publishing.publications
80-
}
81-
8277
publish.dependsOn build
8378
publishToMavenLocal.dependsOn build
84-
publishToSonatype.dependsOn publish
79+
publishReleasePublicationToMavenLocal.dependsOn jar
80+
publishToSonatype.dependsOn publish

0 commit comments

Comments
 (0)