We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b630ab7 commit 2d8a460Copy full SHA for 2d8a460
android/sdl_android/build.gradle
@@ -9,9 +9,12 @@ buildscript {
9
10
plugins {
11
id "com.android.library"
12
- id "com.vanniktech.maven.publish" version "0.34.0"
+ id "com.vanniktech.maven.publish" version "0.35.0"
13
}
14
15
+group = "com.smartdevicelink"
16
+version = file("../../VERSION").text.trim()
17
+
18
mavenPublishing {
19
publishToMavenCentral()
20
signAllPublications()
@@ -83,3 +86,11 @@ dependencies {
83
86
androidTestImplementation 'androidx.test.espresso:espresso-core:3.7.0'
84
87
androidTestImplementation 'androidx.test.espresso:espresso-intents:3.7.0'
85
88
89
90
+afterEvaluate {
91
+ tasks.named("sourceReleaseJar") {
92
+ exclude { details ->
93
+ details.file.toPath().toString().contains("/generated/")
94
+ }
95
96
+}
0 commit comments