summaryrefslogtreecommitdiff
path: root/java/src/IceSSL/build.gradle
blob: 9aacc25a3ccc7c91e86791d6ea128f6224b2fdcb (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 = "IceSSL"
project.ext.moduleName = "com.zeroc.icessl"
project.ext.description = "The IceSSL plug-in"

slice {
    java {
        files = fileTree(dir: "$project.ext.topSrcDir/slice", includes:['IceSSL/*.ice'])
    }
}

dependencies {
    implementation project(':ice')
}

apply from: "$project.ext.topSrcDir/java/gradle/library.gradle"