From 59bca84183b3ac0e2a53c299451fa8cdf68f5e34 Mon Sep 17 00:00:00 2001 From: yangxisong Date: Fri, 12 Dec 2025 11:55:34 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E8=87=AA=E5=8A=A8=E5=8C=96=E5=8F=91?= =?UTF-8?q?=E5=B8=83=E5=88=B0Maven?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Readme.md | 10 +++++----- gradle.properties | 6 +++--- library/build.gradle.kts | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Readme.md b/Readme.md index 57376b4..45e77d5 100644 --- a/Readme.md +++ b/Readme.md @@ -7,25 +7,25 @@ Room 数据持久化;Worker管理上传任务,初次上传+重试共5次, | release | https://track.23544.com | 否 | ### 使用 -#### 1.0.5 +#### 1.0.6 ```kotlin repositories { google() mavenCentral() maven { - url = uri("http://192.168.2.14:8081/repository/maven-releases/") + url = uri("https://nexus.23544.com/repository/maven-releases/") isAllowInsecureProtocol = true credentials { username = "admin" - password = "qwer1234.." + password = "j7EgYb2ejMCt5aYw" } } maven { - url = uri("http://192.168.2.14:8081/repository/maven-snapshots/") + url = uri("https://nexus.23544.com/repository/maven-snapshots/") isAllowInsecureProtocol = true credentials { username = "admin" - password = "qwer1234.." + password = "j7EgYb2ejMCt5aYw" } } } diff --git a/gradle.properties b/gradle.properties index bde6df6..faaafc9 100644 --- a/gradle.properties +++ b/gradle.properties @@ -21,9 +21,9 @@ kotlin.code.style=official # resources declared in the library itself and none from the library's dependencies, # thereby reducing the size of the R class for that library android.nonTransitiveRClass=true -mavenReleaseRepoUrl=http://192.168.2.14:8081/repository/maven-releases/ -mavenDebugRepoUrl=http://192.168.2.14:8081/repository/maven-snapshots/ +mavenReleaseRepoUrl=https://nexus.23544.com/repository/maven-releases/ +mavenDebugRepoUrl=http://nexus.23544.com/repository/maven-snapshots/ mavenUsername=admin -mavenPassword=qwer1234.. +mavenPassword=j7EgYb2ejMCt5aYw baseReleaseUrl=https://track.23544.com baseDebugUrl=http://192.168.2.7:18828 diff --git a/library/build.gradle.kts b/library/build.gradle.kts index 990f38b..04657cd 100644 --- a/library/build.gradle.kts +++ b/library/build.gradle.kts @@ -7,7 +7,7 @@ plugins { id("maven-publish") } group = "com.yuanxuan" -version = "1.0.5" +version = "1.0.6" val baseReleaseUrl: Provider = providers.gradleProperty("baseReleaseUrl")