-
Notifications
You must be signed in to change notification settings - Fork 19
/
build.gradle
99 lines (81 loc) · 2.12 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
91
92
93
94
95
96
97
98
apply plugin: 'groovy'
apply plugin: 'eclipse'
apply plugin: 'nexus'
apply plugin: 'idea'
group = 'com.trigonic'
version = '1.5-SNAPSHOT'
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'org.gradle.api.plugins:gradle-nexus-plugin:0.2'
}
}
repositories {
mavenCentral()
}
dependencies {
compile gradleApi()
compile 'org.redline-rpm:redline:1.1.10+'
compile localGroovy()
testCompile 'junit:junit:4.+'
testCompile([group: 'org.gmock', name: 'gmock', version: '0.8.2', transitive: false])
}
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 'gradle-rpm-plugin - Gradle plugin for constructing RPM packages'
packaging 'jar'
description 'Provides a task similar to Tar and Zip for constructing RPM package files.'
url 'https://github.com/TrigonicSolutions/gradle-rpm-plugin'
inceptionYear '2011'
parent {
groupId 'org.sonatype.oss'
artifactId 'oss-parent'
version '7'
}
scm {
url 'scm:git://github.com/TrigonicSolutions/gradle-rpm-plugin.git'
connection 'scm:git://github.com/TrigonicSolutions/gradle-rpm-plugin.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'
}
}
}
}
test {
testLogging {
exceptionFormat "full"
}
}
task createWrapper(type: Wrapper) {
gradleVersion = '1.7'
}