-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.gradle
More file actions
28 lines (25 loc) · 914 Bytes
/
settings.gradle
File metadata and controls
28 lines (25 loc) · 914 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
maven { url = 'https://central.sonatype.com/repository/maven-snapshots/' }
}
}
// When this repo sits next to bb4-optimization, use that build so genetic crossover fixes compile and run locally.
def optimizationSibling = new File(settings.rootDir, '../bb4-optimization')
if (optimizationSibling.isDirectory()) {
includeBuild(optimizationSibling.absolutePath) {
dependencySubstitution {
substitute module('com.barrybecker4:bb4-optimization') using project(':')
}
}
}
def aStarSibling = new File(settings.rootDir, '../bb4-A-star')
if (aStarSibling.isDirectory()) {
includeBuild(aStarSibling.absolutePath) {
dependencySubstitution {
substitute module('com.barrybecker4:bb4-A-star') using project(':')
}
}
}
rootProject.name = 'bb4-puzzles'