forked from hannes/renjin-dbi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.gradle
34 lines (27 loc) · 1.6 KB
/
settings.gradle
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
29
30
31
32
33
34
include 'RJDBC'
include 'RSQLite'
include 'RH2'
include 'RPostgreSQL'
includeBuild '../../gradle-plugin'
includeBuild('../../renjin') {
dependencySubstitution {
substitute module('org.renjin:renjin-core') with project(':core')
substitute module('org.renjin:renjin-packager') with project(':tools:packager')
substitute module('org.renjin:renjin-cli') with project(':cli')
substitute module('org.renjin:renjin-nmath') with project(':math:nmath')
substitute module('org.renjin:compiler') with project(':packages:compiler')
substitute module('org.renjin:datasets') with project(':packages:datasets')
substitute module('org.renjin:graphics') with project(':packages:graphics')
substitute module('org.renjin:grDevices') with project(':packages:grDevices')
substitute module('org.renjin:grid') with project(':packages:grid')
substitute module('org.renjin:hamcrest') with project(':packages:hamcrest')
substitute module('org.renjin:methods') with project(':packages:methods')
substitute module('org.renjin:parallel') with project(':packages:parallel')
substitute module('org.renjin:splines') with project(':packages:splines')
substitute module('org.renjin:stats') with project(':packages:stats')
substitute module('org.renjin:stats4') with project(':packages:stats4')
substitute module('org.renjin:tcltk') with project(':packages:tcltk')
substitute module('org.renjin:tools') with project(':packages:tools')
substitute module('org.renjin:utils') with project(':packages:utils')
}
}