Skip to content

Commit 683088c

Browse files
committed
Fix maven plugin imports
1 parent e15dc40 commit 683088c

File tree

3 files changed

+17
-6
lines changed

3 files changed

+17
-6
lines changed

client/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
apply plugin: 'com.android.library'
2+
apply plugin: 'android-maven'
23

34
description = 'js-android-sdk-client'
45

56
ext {
67
PUBLISH_GROUP_ID = group
78
PUBLISH_ARTIFACT_ID = description
8-
PUBLISH_VERSION = '1.9.0'
9+
PUBLISH_VERSION = '1.9'
910
}
1011

1112
android {

client/src/androidTest/AndroidManifest.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,4 @@
2828

2929
<application/>
3030

31-
<instrumentation
32-
android:name="android.test.InstrumentationTestRunner"
33-
android:targetPackage="com.jaspersoft.android.sdk.integration" />
34-
3531
</manifest>

ui/build.gradle

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
apply plugin: 'com.android.library'
2+
apply plugin: 'android-maven'
23

34
description = 'js-android-sdk-ui'
45

56
ext {
67
PUBLISH_GROUP_ID = group
78
PUBLISH_ARTIFACT_ID = description
8-
PUBLISH_VERSION = '1.9.0'
9+
PUBLISH_VERSION = '1.9'
910
}
1011

1112

@@ -24,6 +25,19 @@ android {
2425
lintOptions {
2526
abortOnError false
2627
}
28+
29+
packagingOptions {
30+
exclude 'asm-license.txt'
31+
exclude 'NOTICE'
32+
exclude 'LICENSE'
33+
exclude 'LICENSE.txt'
34+
exclude 'META-INF/license.txt'
35+
exclude 'META-INF/LICENSE.txt'
36+
exclude 'META-INF/LICENSE'
37+
exclude 'META-INF/notice.txt'
38+
exclude 'META-INF/NOTICE.txt'
39+
exclude 'META-INF/NOTICE'
40+
}
2741
}
2842

2943

0 commit comments

Comments
 (0)