summaryrefslogtreecommitdiff
path: root/java/settings.gradle
blob: f7ecda52820650cb5672de934fabf8c16ebbeaea (plain)
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
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//

if(!System.env.ICE_BIN_DIST?.split(" ").find{ it == 'all' || it.contains('java')}) {
    // Main source
    include ':ice'
    project(':ice').projectDir = new File('src/Ice')
    include ':icessl'
    project(':icessl').projectDir = new File('src/IceSSL')
    include ':icediscovery'
    project(':icediscovery').projectDir = new File('src/IceDiscovery')
    include ':icelocatordiscovery'
    project(':icelocatordiscovery').projectDir = new File('src/IceLocatorDiscovery')
    include ':icebt'
    project(':icebt').projectDir = new File('src/IceBT')
    include ':icebox'
    project(':icebox').projectDir = new File('src/IceBox')
    include ':glacier2'
    project(':glacier2').projectDir = new File('src/Glacier2')
    include ':icestorm'
    project(':icestorm').projectDir = new File('src/IceStorm')
    include ':icegrid'
    project(':icegrid').projectDir = new File('src/IceGrid')
    include ':IceGridGUI'
    project(':IceGridGUI').projectDir = new File('src/IceGridGUI')
}

// Tests
include ':test'

include ':testPlugins'
project(':testPlugins').projectDir = new File('test/plugins')