forked from gradle/gradle-jdocbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
168 lines (152 loc) · 4.92 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
/*
* jDocBook, processing of DocBook sources
*
* Copyright (c) 2011, Red Hat Inc. or third-party contributors as
* indicated by the @author tags or express copyright attribution
* statements applied by the authors. All third-party contributions are
* distributed under license by Red Hat Inc.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
* Lesser General Public License, as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this distribution; if not, write to:
* Free Software Foundation, Inc.
* 51 Franklin Street, Fifth Floor
* Boston, MA 02110-1301 USA
*/
buildscript {
repositories {
mavenCentral()
mavenLocal()
mavenRepo name: "jboss", url: "http://repository.jboss.org/nexus/content/groups/public/"
}
dependencies {
classpath 'org.hibernate.build.gradle:gradle-upload-auth-plugin:1.1.1'
}
}
apply plugin: 'groovy'
apply plugin: 'maven' // used for 'install' and 'upload'/'deploy' task
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'uploadAuth'
group = 'org.jboss.jdocbook'
version = '1.2.2.2'
targetCompatibility = "1.6"
sourceCompatibility = "1.6"
defaultTasks 'classes'
repositories {
mavenCentral()
mavenLocal()
mavenRepo name: "jboss", url: "http://repository.jboss.org/nexus/content/groups/public/"
}
configurations {
deployerJars {
description = 'Jars needed for doing deployment to JBoss Nexus repo'
}
}
ext{
spock = ['org.spockframework:spock-core:0.5-groovy-1.8@jar',
'org.hamcrest:hamcrest-core:1.2.1@jar',
'org.hamcrest:hamcrest-library:1.2.1@jar',
'cglib:cglib-nodep:2.2',
'org.objenesis:objenesis:1.2'
]
jmock = ['org.jmock:jmock:2.5.1@jar',
'org.hamcrest:hamcrest-core:1.1@jar',
'org.jmock:jmock-junit4:2.5.1@jar',
'org.jmock:jmock-legacy:2.5.1@jar',
'org.objenesis:objenesis:1.2',
'cglib:cglib-nodep:2.2'
]}
dependencies {
compile gradleApi()
compile localGroovy()
compile 'org.jboss.jdocbook:jdocbook-core:1.1.0'
compile 'org.apache.ant:ant:1.7.0' //don't see why we need this here
groovy localGroovy()
testCompile 'junit:junit:4.8.1'
testCompile jmock
testCompile spock
testCompile 'org.slf4j:slf4j-simple:1.6.1@jar'
testCompile 'org.slf4j:jcl-over-slf4j:1.6.1@jar'
deployerJars "org.apache.maven.wagon:wagon-http:1.0"
}
manifest.mainAttributes(
provider: 'gradle',
'Implementation-Url': 'http://jboss.org',
'Implementation-Version': version,
'Implementation-Vendor': 'JBoss.org',
'Implementation-Vendor-Id': 'org.jboss'
)
def pomConfig = {
name 'jDocBook Plugin for Gradle'
description 'Plugin for integrating jDocBook into Gradle'
url 'http://github.com/gradle/gradle-jdocbook'
organization 'JBoss.org'
issueManagement {
// for the time being just use the github issue tracker
system 'github'
url 'http://github.com/gradle/gradle-jdocbook/issues'
}
scm {
url "http://github.com/gradle/gradle-jdocbook"
connection "scm:git:https://github.com/gradle/gradle-jdocbook.git"
developerConnection "scm:git:[email protected]:gradle/gradle-jdocbook.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 'sebersole'
name 'Steve Ebersole'
}
developer {
id 'stliu'
name 'Strong Liu'
}
developer {
id 'adammurdoch'
name 'Adam Murdoch'
}
developer {
id 'hansd'
name 'Hans Dockter'
}
}
}
configure(install.repositories.mavenInstaller) {
pom.project pomConfig
}
uploadArchives {
repositories.mavenDeployer {
name = 'jbossDeployer'
configuration = configurations.deployerJars
pom.project pomConfig
repository(id: "jboss-releases-repository",url: "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/")
snapshotRepository(id: "jboss-snapshots-repository",url: "https://repository.jboss.org/nexus/content/repositories/snapshots/")
}
}
task sourcesJar(type: Jar, dependsOn: compileJava) {
from sourceSets.main.allSource
classifier = 'sources'
}
artifacts {
archives sourcesJar
}
uploadArchives.dependsOn sourcesJar
uploadArchives.dependsOn install
task wrapper(type: Wrapper) {
gradleVersion = '1.8'
}