blob: 7731da83a739d1e4f2cbd1dde59381ef37c35f6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
project.ext.displayName = "Ice Compat"
project.ext.description = "Ice is a comprehensive RPC framework that helps you build distributed applications" +
" with minimal effort using familiar object-oriented idioms"
slice {
java {
files = fileTree(dir: "$project.ext.topSrcDir/slice", includes:['Ice/*.ice', 'IceSSL/*.ice'], excludes:['Ice/*F.ice'])
}
}
apply from: "$project.ext.topSrcDir/java/gradle/library.gradle"
|