Skip to content

Commit

Permalink
#1: Define composite build.
Browse files Browse the repository at this point in the history
  • Loading branch information
jenetics committed Nov 8, 2019
1 parent 6a15a12 commit 6aeb100
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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')
}
}
}

0 comments on commit 6aeb100

Please sign in to comment.