We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdaca28 commit 6326c97Copy full SHA for 6326c97
1 file changed
settings.gradle.kts
@@ -10,15 +10,9 @@ pluginManagement {
10
11
rootProject.name = "morpher-api"
12
13
-val isJitPack by extra {
14
- System.getenv("CI") != null || System.getenv("JITPACK_IO") != null || System.getenv("TRAVIS") != null
15
-}
16
-
17
-println("Is JitPack build: $isJitPack") // 调试用,看是否判断正确
+include(
+ "morpher-api",
+ "morpher-example"
+)
18
19
-include("morpher-api")
20
21
-if(!isJitPack){
22
- include("morpher-example")
23
24
0 commit comments