From d59d55575d913646b7a90fca651904ab889c6723 Mon Sep 17 00:00:00 2001
From: riku <risaku@163.com>
Date: 星期五, 18 二月 2022 16:30:53 +0800
Subject: [PATCH] ### 一、任务模块相关
---
build.gradle | 40 ++++++++++++++++++++++++++++------------
1 files changed, 28 insertions(+), 12 deletions(-)
diff --git a/build.gradle b/build.gradle
index a05cf3f..ee7a446 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,33 +1,48 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
-buildscript {
- ext.kotlin_version = '1.3.41'
- ext.lifecycle_version = '1.1.1'
- ext.anko_version = '0.10.8'
- ext.event_bus = '3.1.1'
- ext.image_picker_version = '2.2.7'
- ext.glide_version = '4.9.0'
- ext.adaper_version = '2.9.46'
- ext.file_download_version = '1.0.7'
- ext.progressbar_version = '3.0.3'
+buildscript {
+
+ ext {
+ kotlin_version = '1.3.72'
+ lifecycle_version = '1.1.1'
+ anko_version = '0.10.8'
+ event_bus = '3.1.1'
+ image_picker_version = '2.2.7'
+ glide_version = '4.9.0'
+ adaper_version = '2.9.46'
+ file_download_version = '1.0.7'
+ progressbar_version = '3.0.3'
+
+ }
repositories {
jcenter()
mavenCentral()
google()
+ maven {
+ url 'http://maven.aliyun.com/nexus/content/repositories/releases/'
+ }
+// maven {
+// url "https://plugins.gradle.org/m2/"
+// }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.2'
- classpath 'org.greenrobot:greendao-gradle-plugin:3.2.2' // add plugin
+ classpath 'org.greenrobot:greendao-gradle-plugin:3.3.0' // add plugin
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.jakewharton:butterknife-gradle-plugin:9.0.0'
+
+ // 娣诲姞emas-services鎻掍欢
+ classpath 'com.aliyun.ams:emas-services:1.0.1'
+
+// classpath "gradle.plugin.ua.eshepelyuk:ManifestClasspath:1.0.0"
}
}
-
+//apply plugin: "ua.eshepelyuk.ManifestClasspath"
allprojects {
repositories {
@@ -35,6 +50,7 @@
maven { url "https://jitpack.io" }
jcenter()
google()
+ maven { url 'http://maven.aliyun.com/nexus/content/repositories/releases/' }
}
// configurations.all {
--
Gitblit v1.9.3