// ********************************************************************** // // Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. // // ********************************************************************** sourceCompatibility = 1.7 targetCompatibility = 1.7 project.ext.displayName = "IceBT Compat" project.ext.description = "Bluetooth support for Ice" slice { java { set1 { files = fileTree(dir: "$sliceDir/IceBT", includes:['*.ice'], excludes:["*F.ice"]) } } } dependencies { compile project(':ice-compat') } 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/**") }