forked from eriwen/gradle-js-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
131 lines (114 loc) · 3.5 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
apply plugin: 'groovy'
apply plugin: 'maven'
apply plugin: 'signing'
apply plugin: 'idea'
defaultTasks 'clean', 'build'
version = '1.2'
group = 'com.eriwen'
ext.archivesBaseName = 'gradle-js-plugin'
ext.isSnapshot = version.endsWith("-SNAPSHOT")
repositories {
mavenCentral()
}
dependencies {
groovy localGroovy()
compile gradleApi()
compile ('com.google.javascript:closure-compiler:r1918') {
exclude module: "junit"
}
testCompile ('org.spockframework:spock-core:0.6-groovy-1.8') {
exclude module: "junit-dep"
exclude module: "groovy-all"
}
}
idea.module {
ext.gradleCacheVariable = 'GRADLE_CACHE'
downloadJavadoc = true
ext.downloadSource = true
outputDir = file("intellij/out")
testOutputDir = file("intellij/testOut")
}
idea.project.ipr.withXml { provider ->
def node = provider.asNode()
// Use git
def vcsConfig = node.component.find { it.'@name' == 'VcsDirectoryMappings' }
vcsConfig.mapping[0].'@vcs' = 'Git'
// Set gradle home
def gradleSettings = node.appendNode('component', [name: 'GradleSettings'])
gradleSettings.appendNode('option', [name: 'SDK_HOME', value: gradle.gradleHomeDir.absolutePath])
}
task sourceJar(type: Jar) {
description = 'An archive of the source code for Maven Central'
classifier = 'sources'
from sourceSets.main.groovy
}
task groovydocJar(type: Jar) {
description = 'An archive of the GroovyDocs for Maven Central'
classifier = 'javadoc'
from groovydoc
}
task wrapper(type: Wrapper) {
gradleVersion = '1.1'
}
artifacts {
archives groovydocJar, sourceJar
}
signing {
sign configurations.archives
}
// Only *require* signing if we are uploading a non snapshot version
gradle.taskGraph.whenReady { taskGraph ->
tasks.withType(org.gradle.plugins.signing.Sign).all {
required = taskGraph.hasTask(":uploadArchives") && !isSnapshot
}
}
install.repositories.mavenInstaller {
pom.project(pomConfiguration)
if (signing.signatory) {
beforeDeployment { signing.signPom(it) }
}
}
uploadArchives {
repositories.mavenDeployer {
if (signing.signatory) {
beforeDeployment { signPom(it) }
}
name = 'mavenCentralReleaseDeployer'
repository(url: 'https://oss.sonatype.org/service/local/staging/deploy/maven2/') {
authentication(userName: System.properties['mavenCentralUsername'], password: System.properties['mavenCentralPassword'])
releases(updatePolicy: 'always')
snapshots(updatePolicy: 'always')
}
pom.project(pomConfiguration)
}
}
/**
* Create POM config and return for use by other tasks.
*/
def getPomConfiguration() {
return {
name 'Gradle JS Plugin'
packaging 'war'
description 'A Gradle plugin for working with JS.'
url 'https://github.com/eriwen/gradle-js-plugin'
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 'eriwen'
name 'Eric Wendelin'
email 'emwendelin@gmail.com'
}
}
scm {
connection 'scm:https://eriwen@github.com/eriwen/gradle-js-plugin'
developerConnection 'scm:git@github.com:eriwen/gradle-js-plugin.git'
url 'https://github.com/eriwen/gradle-js-plugin'
}
}
}