mirror of https://github.com/laurent22/joplin.git
34 lines
1.1 KiB
Plaintext
34 lines
1.1 KiB
Plaintext
diff --git a/android/build.gradle b/android/build.gradle
|
|
index 1ae415331855895ed6c65d72e155ff91d02b4b39..a7548535a7fb08800fb4731c1d8e36efa8afa1ae 100644
|
|
--- a/android/build.gradle
|
|
+++ b/android/build.gradle
|
|
@@ -22,7 +22,7 @@ def safeExtGet(prop, fallback) {
|
|
}
|
|
|
|
apply plugin: 'com.android.library'
|
|
-apply plugin: 'maven'
|
|
+apply plugin: 'maven-publish'
|
|
|
|
buildscript {
|
|
// The Android Gradle plugin is only required when opening the android folder stand-alone.
|
|
@@ -41,7 +41,7 @@ buildscript {
|
|
}
|
|
|
|
apply plugin: 'com.android.library'
|
|
-apply plugin: 'maven'
|
|
+apply plugin: 'maven-publish'
|
|
|
|
android {
|
|
compileSdkVersion safeExtGet('compileSdkVersion', DEFAULT_COMPILE_SDK_VERSION)
|
|
@@ -140,10 +140,5 @@ afterEvaluate { project ->
|
|
|
|
task installArchives(type: Upload) {
|
|
configuration = configurations.archives
|
|
- repositories.mavenDeployer {
|
|
- // Deploy to react-native-event-bridge/maven, ready to publish to npm
|
|
- repository url: "file://${projectDir}/../android/maven"
|
|
- configureReactNativePom pom
|
|
- }
|
|
}
|
|
}
|