Skip to content

Commit 1408316

Browse files
committed
1.6.0
1 parent 1c4fff0 commit 1408316

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ android {
1010
defaultConfig {
1111
applicationId = "com.xiaoxiaoying.recyclerarrayadapter.demo"
1212
minSdk = libs.versions.minSdk.get().toInt()
13-
versionCode = 159
14-
versionName = "1.5.9"
13+
versionCode = 160
14+
versionName = "1.6.0"
1515
}
1616
compileOptions {
1717
sourceCompatibility = JavaVersion.VERSION_17

recyclerarrayadapter/build.gradle.kts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,14 @@ dependencies {
4949

5050
publishing {
5151
publications {
52-
create<MavenPublication>("maven") {
52+
create<MavenPublication>("mavenJava") {
5353
// from(components["kotlin"]) // 根据你项目的实际组件进行替换
5454
groupId = "com.github.xiaoxiaoying"
5555
artifactId = "Page-RecyclerView-ArrayAdpter" // 替换为你的 artifact ID
56-
version = "1.5.9"
56+
version = "1.6.0"
5757
}
5858
}
59-
59+
repositories {
60+
mavenLocal() // 发布到本地 Maven 仓库
61+
}
6062
}

0 commit comments

Comments
 (0)