Skip to content

Commit 39e2ff8

Browse files
committed
u
1 parent 61c8844 commit 39e2ff8

File tree

2 files changed

+25
-4
lines changed

2 files changed

+25
-4
lines changed

.github/workflows/plugin-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Upload Plugin
3636
uses: actions/upload-artifact@v4
3737
with:
38-
# name: kmp-android.apk
38+
name: module-assembler-intellij-plugin.zip
3939
path: module-assembler-intellij-plugin/build/distributions/**
4040

4141
gradle-plugin-build:
@@ -55,7 +55,7 @@ jobs:
5555
- name: Upload Plugin
5656
uses: actions/upload-artifact@v4
5757
with:
58-
# name: kmp-android.apk
58+
name: module-assembler-gradle-plugin.zip
5959
path: module-assembler-gradle-plugin/build/libs/**
6060

6161
gradle-plugin-kt-build:
@@ -76,5 +76,5 @@ jobs:
7676
- name: Upload Plugin
7777
uses: actions/upload-artifact@v4
7878
with:
79-
# name: kmp-android.apk
79+
name: module-assembler-gradle-plugin-kt.zip
8080
path: module-assembler-gradle-plugin-kt/build/libs/**
Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,32 @@
1+
pluginManagement {
2+
repositories {
3+
google {
4+
mavenContent {
5+
includeGroupAndSubgroups("androidx")
6+
includeGroupAndSubgroups("com.android")
7+
includeGroupAndSubgroups("com.google")
8+
}
9+
}
10+
mavenCentral()
11+
gradlePluginPortal()
12+
}
13+
}
14+
115
dependencyResolutionManagement {
216
repositories {
3-
google()
17+
google {
18+
mavenContent {
19+
includeGroupAndSubgroups("androidx")
20+
includeGroupAndSubgroups("com.android")
21+
includeGroupAndSubgroups("com.google")
22+
}
23+
}
424
mavenCentral()
525
}
626
versionCatalogs {
727
create("libs") {
828
from(files("../android/gradle/libs.versions.toml"))
929
}
1030
}
31+
1132
}

0 commit comments

Comments
 (0)