-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
49 lines (36 loc) · 1.04 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
group 'com.scaleoutsoftware'
version '1.2-RELEASE'
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven {
url "https://repo.scaleoutsoftware.com/repository/external"
}
}
configurations {
archives
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
artifacts {
archives javadocJar
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
//testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.3.0-M1'
testCompile group: 'javax.cache', name: 'cache-api', version: '1.1.0'
testCompile group: 'com.scaleoutsoftware.client', name: 'jnc', version: '5.8.18.349'
compile group: 'com.scaleoutsoftware.client', name: 'jnc', version: '5.8.18.349'
compile group: 'javax.cache', name: 'cache-api', version: '1.1.0'
}
jar {
manifest {
attributes ('Implementation-Title': project.name,
'Implementation-Version': project.version)
}
}