From 6aeb1006c792528724d222513affddc94ce38816 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franz=20Wilhelmst=C3=B6tter?= Date: Fri, 8 Nov 2019 17:49:52 +0100 Subject: [PATCH] #1: Define composite build. --- settings.gradle | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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') + } + } +}