-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
67 lines (56 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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'org.gradle.api.plugins:gradle-nexus-plugin:0.7.1'
}
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'nexus'
group = 'org.typeunsafe'
version = '0.2-SNAPSHOT'
sourceCompatibility = 1.6
targetCompatibility = 1.6
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
testCompile 'junit:junit:4.11'
testCompile 'org.assertj:assertj-core:1.6.1'
}
test.testLogging {
exceptionFormat "full"
}
task wrapper(type: Wrapper) {
gradleVersion = '2.0'
}
modifyPom {
project {
name 'Late-Bound'
description 'A no-fluff late-binding helper for Java.'
url 'https://github.com/TypeUnsafe/late-bound'
inceptionYear '2014'
scm {
url 'https://github.com/TypeUnsafe/late-bound'
connection 'scm:https://[email protected]/TypeUnsafe/late-bound.git'
developerConnection 'scm:git://github.com/TypeUnsafe/late-bound.git'
}
licenses {
license {
name 'MIT License'
url 'http://opensource.org/licenses/MIT'
distribution 'repo'
}
}
developers {
developer {
id 'jponge'
name 'Julien Ponge'
email '[email protected]'
}
}
}
}