// ********************************************************************** // // 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. // // ********************************************************************** sourceSets { main { java { srcDirs "$rootProject.projectDir/test/plugins" } } } dependencies { compile localDependency('ice-compat') } jar { archiveName = "IceTestPlugins.jar" destinationDir = new File("$rootProject.projectDir/lib/") } clean { delete("$rootProject.projectDir/lib/IceTestPlugins.jar") }