// // Copyright (c) ZeroC, Inc. All rights reserved. // project.ext.displayName = "IceBT" project.ext.moduleName = "com.zeroc.icebt" project.ext.description = "Bluetooth support for Ice" slice { java { files = fileTree(dir: "$project.ext.topSrcDir/slice/IceBT", includes:['*.ice'], excludes:["*F.ice"]) } } dependencies { implementation project(':ice') } apply from: "$project.ext.topSrcDir/java/gradle/library.gradle" jar { // // The classes in src/main/java/android/bluetooth are stubs that allow us to compile the IceBT transport // plug-in without requiring an Android SDK. These classes are excluded from the IceBT JAR file. // exclude("android/**") } javadoc { excludes = ["**/android/*", "**/*I.java", "**/Instance.java"] }