blob: b886218a8a7080eff8cf365c7b5cdf44ba7e0466 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
project.ext.displayName = "IceLocatorDiscovery"
project.ext.moduleName = "com.zeroc.icelocatordiscovery"
project.ext.description = "Ice plug-in that enables the discovery of IceGrid and custom locators via UDP multicast"
slice {
java {
files = fileTree(dir: "$project.ext.topSrcDir/slice/IceLocatorDiscovery", includes:['*.ice'], excludes:["*F.ice"])
}
}
dependencies {
implementation project(':ice')
}
apply from: "$project.ext.topSrcDir/java/gradle/library.gradle"
|