-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.gradle
executable file
·91 lines (75 loc) · 2 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
89
90
apply plugin: 'java'
apply plugin: 'nexus'
apply plugin: 'eclipse'
group = 'com.trigonic'
version = '0.3-SNAPSHOT'
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'org.gradle.api.plugins:gradle-nexus-plugin:0.2'
}
}
repositories {
mavenCentral()
}
dependencies {
compile 'commons-io:commons-io:1.4'
compile 'log4j:log4j:1.2.16'
testCompile 'junit:junit:4.+'
testCompile 'org.easymock:easymock:2.4'
testCompile 'org.easymock:easymockclassextension:2.4'
}
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 'jrobotx - Java Robot Exclusion Compliance Library'
packaging 'jar'
description 'Library to provide compliance with the Web Robot Exclusion protocol (robots.txt)'
url 'https://github.com/TrigonicSolutions/jrobotx'
inceptionYear '2011'
parent {
groupId 'org.sonatype.oss'
artifactId 'oss-parent'
version '7'
}
scm {
url 'scm:git://github.com/TrigonicSolutions/jrobotx.git'
connection 'scm:git://github.com/TrigonicSolutions/jrobotx.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'
}