-
Notifications
You must be signed in to change notification settings - Fork 20
/
settings.gradle
38 lines (34 loc) · 1.43 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
35
36
37
pluginManagement {
repositories {
mavenLocal()
maven { url "https://nexus.ala.org.au/content/groups/public/" }
maven { url "https://repo.grails.org/grails/core/" }
gradlePluginPortal()
//maven { url "https://plugins.gradle.org/m2/" }
}
plugins {
id "org.grails.grails-web" version "6.0.0"
id "org.grails.grails-gsp" version "6.0.0"
id "com.bertramlabs.asset-pipeline" version "4.3.0"
}
}
rootProject.name='ala-hub'
// In-place plugin config
// Set to true it needed only for development
boolean inplace = false
if (inplace) {
include ':biocache-hubs'
project(':biocache-hubs').projectDir = new File(settingsDir, '../biocache-hubs')
// include ':downloads-plugin'
// project(':downloads-plugin').projectDir = new File(settingsDir,'../downloads-plugin')
// include ':ala-charts-plugin'
// project(':ala-charts-plugin').projectDir = new File(settingsDir,'../ala-charts-plugin')
// include ':images-client-plugin'
// project(':images-client-plugin').projectDir = new File(settingsDir,'../images-client-plugin')
// include ':ala-bootstrap3'
// project(':ala-bootstrap3').projectDir = new File(settingsDir, '../ala-bootstrap3')
// include ':ala-auth'
// project(':ala-auth').projectDir = new File(settingsDir,'../ala-auth-plugin')
// include ':ala-ws-plugin'
// project(':ala-ws-plugin').projectDir = new File(settingsDir, '../ala-ws-plugin')
}