Skip to content

Commit 2d8a460

Browse files
committed
Make updates for vanniktech plugin
1 parent b630ab7 commit 2d8a460

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

android/sdl_android/build.gradle

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,12 @@ buildscript {
99

1010
plugins {
1111
id "com.android.library"
12-
id "com.vanniktech.maven.publish" version "0.34.0"
12+
id "com.vanniktech.maven.publish" version "0.35.0"
1313
}
1414

15+
group = "com.smartdevicelink"
16+
version = file("../../VERSION").text.trim()
17+
1518
mavenPublishing {
1619
publishToMavenCentral()
1720
signAllPublications()
@@ -83,3 +86,11 @@ dependencies {
8386
androidTestImplementation 'androidx.test.espresso:espresso-core:3.7.0'
8487
androidTestImplementation 'androidx.test.espresso:espresso-intents:3.7.0'
8588
}
89+
90+
afterEvaluate {
91+
tasks.named("sourceReleaseJar") {
92+
exclude { details ->
93+
details.file.toPath().toString().contains("/generated/")
94+
}
95+
}
96+
}

0 commit comments

Comments
 (0)