We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 705a2fb commit 07afe67Copy full SHA for 07afe67
1 file changed
build.gradle.kts
@@ -26,8 +26,17 @@ repositories {
26
27
dependencies {
28
if (bootstrap) {
29
- compileOnly(project(mapOf("path" to ":Parsek")))
30
- compileOnly(project(mapOf("path" to ":plugins:parsek-plugin-database")))
+ if (findProject(":Parsek") != null) {
+ compileOnly(project(":Parsek"))
31
+ } else {
32
+ compileOnly(fileTree(rootDir) { include("Parsek*.jar") })
33
+ }
34
+
35
+ if (findProject(":plugins:parsek-plugin-database") != null) {
36
+ compileOnly(project(":plugins:parsek-plugin-database"))
37
38
+ compileOnly(fileTree(rootDir) { include("parsek-plugin-database*.jar") })
39
40
} else {
41
compileOnly("dev.parsek:core:1.0.0-beta.19")
42
compileOnly("dev.parsek:parsek-plugin-database:1.0.0-dev.5")
0 commit comments