diff --git a/settings.gradle b/settings.gradle index 18b08043..bddc5d16 100644 --- a/settings.gradle +++ b/settings.gradle @@ -24,8 +24,16 @@ * @version !__version__! */ +rootProject.name = 'jpx' + // The JPX projects. include 'jpx' include 'jpx.jdbc' -rootProject.name = 'jpx' +if (file('../FacileJDBC').exists()) { + includeBuild('../FacileJDBC') { + dependencySubstitution { + substitute module('io.jenetics:facilejdbc') with project(':facilejdbc') + } + } +}