File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ WORKDIR /app
2020COPY --from=builder dependencies/BOOT-INF /app
2121COPY --from=builder snapshot-dependencies/BOOT-INF /app
2222COPY --from=builder source-downloader-plugins/BOOT-INF/lib /app/lib
23+ COPY --from=builder source-downloader-core/BOOT-INF /app
2324COPY --from=builder application/BOOT-INF/classes /app
2425COPY --from=builder application/META-INF /app/META-INF
2526
Original file line number Diff line number Diff line change @@ -47,6 +47,11 @@ tasks.bootJar {
4747 intoLayer(" source-downloader-plugins" ) {
4848 include(" io.github.shoaky:*-plugin:*" )
4949 }
50+ intoLayer(" source-downloader-core" ) {
51+ include(" io.github.shoaky:core:*" )
52+ include(" io.github.shoaky:sdk:*" )
53+ include(" io.github.shoaky:common:*" )
54+ }
5055 intoLayer(" snapshot-dependencies" ) {
5156 include(" *:*:*SNAPSHOT" )
5257 }
@@ -56,6 +61,7 @@ tasks.bootJar {
5661 " dependencies" ,
5762 " spring-boot-loader" ,
5863 " snapshot-dependencies" ,
64+ " source-downloader-core" ,
5965 " source-downloader-plugins" ,
6066 " application"
6167 )
Original file line number Diff line number Diff line change 11plugins {
22 `java- library`
33 // 可以移除只是为了看打包成fat jar的大小
4- alias(libs.plugins.spring.boot)
4+ // alias(libs.plugins.spring.boot)
55}
66
77dependencies {
You can’t perform that action at this time.
0 commit comments