blob: 4a9a094270eb1b39364fa88bc0112bdac82dfc0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
sourceSets {
main {
java {
srcDirs "$rootProject.projectDir/test/plugins"
}
}
}
dependencies {
implementation localDependency('ice-compat')
}
jar {
archiveName = "IceTestPlugins.jar"
destinationDir = new File("$rootProject.projectDir/lib/")
}
clean {
delete("$rootProject.projectDir/lib/IceTestPlugins.jar")
}
|