forked from apache/openwhisk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
91 lines (77 loc) · 2.45 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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath "cz.alenkacz:gradle-scalafmt:${gradle.scalafmt.version}"
}
}
plugins {
id "com.gradle.build-scan" version "1.12.1"
}
buildScan {
termsOfServiceUrl = 'https://gradle.com/terms-of-service'
termsOfServiceAgree = 'yes'
publishAlwaysIf(System.getenv('CI') != null)
}
subprojects {
apply plugin: 'scalafmt'
scalafmt.configFilePath = gradle.scalafmt.config
group 'org.apache.openwhisk'
version '1.0.0-SNAPSHOT'
afterEvaluate {
if (project.plugins.hasPlugin('application')
&& project.plugins.hasPlugin('scala')) {
startScripts {
doLast {
unixScript.text = configureUnixClasspath(unixScript)
}
}
}
if (project.plugins.hasPlugin('maven')) {
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
task testSourcesJar(type: Jar, dependsOn: testClasses) {
classifier = 'test-sources'
from sourceSets.test.allSource
}
task testClassesJar(type: Jar, dependsOn: testClasses) {
classifier = 'tests'
from sourceSets.test.output
}
artifacts {
archives sourcesJar
archives testSourcesJar
archives testClassesJar
}
}
if (project.plugins.hasPlugin('application')) {
//Ensure that dist archive name does not contain version
distTar {
archiveName = "${project.name}.tar"
}
//Avoid generating the zip files from maven installations
distZip {
enabled false
}
configurations.archives.with {
artifacts.remove artifacts.find { it.archiveTask.is distZip }
}
}
}
}
def configureUnixClasspath(File script) {
script
.readLines()
.collect { line ->
// Looking for the line that starts with CLASSPATH=
line = line.replaceAll(~/^CLASSPATH=.*$/) { original ->
// Get original line and append it
// with the configuration directory.
original += ':$APP_HOME/ext-lib/*:$APP_HOME/config'
}
}
.join('\n')
}