From 64756fead6a0b8448abb5595ee3d79aace1662e3 Mon Sep 17 00:00:00 2001 From: ZhanGSKen Date: Tue, 21 Jul 2026 16:08:50 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=9D=E6=8C=81WinBoLL=E6=A1=86=E6=9E=B6?= =?UTF-8?q?=E7=9A=84Nexus=E6=BA=90=E5=9C=B0=E5=9D=80=EF=BC=8C=E4=B8=8EWinB?= =?UTF-8?q?oLL=E5=88=86=E6=94=AF=E4=B8=80=E8=87=B4=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.gradle | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index bdc7cbd..2cbeeae 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,9 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { + maven { url 'https://maven.aliyun.com/repository/public/' } + maven { url 'https://maven.aliyun.com/repository/google/' } + maven { url 'https://maven.aliyun.com/repository/gradle-plugin/' } maven { url 'https://dl.bintray.com/ppartisan/maven/' } maven { url "https://clojars.org/repo/" } maven { url "https://jitpack.io" } @@ -14,9 +17,9 @@ buildscript { // Nexus Maven 库地址 // "WinBoLL Release" - maven { url "https://nexus.zhangsken.cc/repository/maven-public/" } + maven { url "https://nexus.winboll.cc/repository/maven-public/" } // "WinBoLL Snapshot" - maven { url "https://nexus.zhangsken.cc/repository/maven-snapshots/" } + maven { url "https://nexus.winboll.cc/repository/maven-snapshots/" } } dependencies { // 适配MIUI12 @@ -28,6 +31,9 @@ buildscript { allprojects { repositories { + maven { url 'https://maven.aliyun.com/repository/public/' } + maven { url 'https://maven.aliyun.com/repository/google/' } + maven { url 'https://maven.aliyun.com/repository/gradle-plugin/' } maven { url 'https://dl.bintray.com/ppartisan/maven/' } maven { url "https://clojars.org/repo/" } maven { url "https://jitpack.io" } @@ -41,9 +47,9 @@ allprojects { // Nexus Maven 库地址 // "WinBoLL Release" - maven { url "https://nexus.zhangsken.cc/repository/maven-public/" } + maven { url "https://nexus.winboll.cc/repository/maven-public/" } // "WinBoLL Snapshot" - maven { url "https://nexus.zhangsken.cc/repository/maven-snapshots/" } + maven { url "https://nexus.winboll.cc/repository/maven-snapshots/" } } ext { // 定义全局变量,常用于版本管理 @@ -89,7 +95,6 @@ allprojects { subprojects { tasks.withType(JavaCompile) { options.encoding = "UTF-8" - options.compilerArgs << '-Xlint:-options' } } }