-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
73 lines (61 loc) · 1.38 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.5.3'
}
}
plugins {
id 'eclipse'
id 'java'
id 'com.bmuschko.nexus' version '2.3.1'
}
apply plugin: 'io.codearte.nexus-staging'
apply from: "$rootDir/gradle/publication.gradle"
apply from: "$rootDir/gradle/testing.gradle"
repositories {
mavenCentral()
}
group = 'org.alicep'
archivesBaseName = 'collect'
sourceCompatibility = 1.8
test {
exclude '**/*PerformanceTests*'
}
dependencies {
compile guava
testCompile benchmark
testCompile byteBuddy
testCompile commonsMath
testCompile guavaTestlib
testCompile junit
testCompile koloboke
testCompile kolobokeImpl
}
modifyPom {
project {
name 'Compact Java Collections'
description 'Compact collections for Java'
url 'https://github.com/alicep-org/collect'
scm {
url 'https://github.com/alicep-org/collect'
connection 'scm:git:git://github.com/alicep-org/collect.git'
developerConnection 'scm:git:[email protected]:alicep-org/collect.git'
}
licenses {
license {
name 'Apache 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
developers {
developer {
id 'alicederyn'
name 'Alice Purcell'
email '[email protected]'
timezone 'Europe/London'
}
}
}
}