forked from TrigonicSolutions/test-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
89 lines (74 loc) · 1.88 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
apply plugin: 'java'
apply plugin: 'nexus'
apply plugin: 'eclipse'
group = 'com.trigonic'
version = '0.7-SNAPSHOT'
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'org.gradle.api.plugins:gradle-nexus-plugin:0.2'
}
}
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
compile 'junit:junit:4.+'
compile 'com.google.guava:guava:13.0'
compile "org.springframework:spring-core:3.1.2.RELEASE"
}
task packageJavadoc(type: Jar, dependsOn: 'javadoc') {
from javadoc.destinationDir
classifier = 'javadoc'
}
task packageSources(type: Jar) {
from sourceSets.main.allSource
classifier = 'sources'
}
artifacts {
archives jar
archives packageJavadoc
archives packageSources
}
modifyPom {
project {
name 'test-utils - Test Utilities'
packaging 'jar'
description 'Provides utilities for testing'
url 'https://github.com/TrigonicSolutions/test-utils'
inceptionYear '2011'
parent {
groupId 'org.sonatype.oss'
artifactId 'oss-parent'
version '7'
}
scm {
url 'scm:git://github.com/TrigonicSolutions/test-utils.git'
connection 'scm:git://github.com/TrigonicSolutions/test-utils.git'
}
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution 'repo'
}
}
developers {
developer {
id 'akrueger'
name 'Alan Krueger'
email '[email protected]'
roles{
role 'Developer'
}
timezone '-6'
}
}
}
}
task createWrapper(type: Wrapper) {
gradleVersion = '1.2'
}