Skip to content

Commit aeb6d03

Browse files
committedJul 7, 2016
Refactored most common Java build stuff into gradle/java-for-modules.gradle. Using CeylonCommonBuildProperties plugin to handle common-build.properties in a cleaner way
1 parent 980e5d1 commit aeb6d03

File tree

11 files changed

+263
-273
lines changed

11 files changed

+263
-273
lines changed
 

‎build.gradle

+1-86
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,13 @@ plugins {
77

88
subprojects {
99

10-
apply plugin : 'com.admc.javaPropFile'
10+
apply plugin : CeylonCommonBuildProperties
1111

1212
// put all the build artifacts in subfolders of the root "build" folder
1313
// buildDir = new File(rootProject.buildDir, it.path.replace(":", "_").substring(1))
1414
buildDir = new File(rootProject.projectDir, 'builtByGradle/' + it.path.replace(":", "_").substring(1))
1515

1616
ext {
17-
// Everything in common-build.properties will be availabe on the 'cbp'
18-
// property object
19-
cbp = propFileLoader.load file(
20-
"${rootProject.projectDir}/common-build.properties"
21-
), [ basedir : rootProject.projectDir,
22-
'sun.boot.class.path' : ''
23-
]
24-
2517
distDir = file(cbp.'build.dist')
2618
repoDir = file(cbp.'build.dist.repo')
2719
globalLibDir = file("${rootProject.projectDir}/lib")
@@ -37,81 +29,4 @@ subprojects {
3729
}
3830
}
3931

40-
// TODO : Might have to filter it to project that needs Java compiltation
41-
subprojects {
42-
43-
apply plugin: 'java'
44-
45-
ext {
46-
// By default projects use a flat source hierarchy
47-
defaultSources = false
48-
}
49-
50-
dependencies {
51-
testCompile 'junit:junit:4.11'
52-
}
53-
54-
sourceCompatibility = 1.7
55-
targetCompatibility = 1.7
56-
57-
compileJava {
58-
options.encoding = 'UTF-8'
59-
}
60-
61-
task sha1 ( type : Checksum ) {
62-
archive jar
63-
dependsOn jar
64-
}
65-
66-
assemble {
67-
dependsOn sha1
68-
}
69-
70-
processResources {
71-
filesMatching 'com/redhat/**/*.utf8properties', { fcd ->
72-
fcd.filter EscapeUnicode
73-
fcd.name = fcd.name.replace('.utf8properties','.properties')
74-
}
75-
}
76-
77-
// Override the default Maven-like source hierarchy for
78-
// any projects where `defaultSources == false`
79-
if (!project.defaultSources) {
80-
sourceSets {
81-
main {
82-
java {
83-
srcDir 'src'
84-
}
85-
resources {
86-
srcDir 'src'
87-
exclude '**/*.java'
88-
}
89-
}
90-
test {
91-
java {
92-
srcDir 'test/src'
93-
}
94-
resources {
95-
srcDir 'test/src'
96-
exclude '**/*.java'
97-
}
98-
}
99-
}
100-
}
101-
102-
task publishJar( type : Copy ) {
103-
group 'Distribution'
104-
description 'Copies binary artifacts to distribution area'
105-
106-
from sha1, {
107-
include '**/*.jar'
108-
}
109-
110-
from jar
111-
}
112-
113-
task publishInternal {
114-
dependsOn 'publishJar'
115-
}
116-
}
11732

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
import org.gradle.api.GradleException
2+
import org.gradle.api.Plugin
3+
import org.gradle.api.Project
4+
5+
/**
6+
* @author Schalk W. Cronjé
7+
*/
8+
class CeylonCommonBuildProperties implements Plugin<Project> {
9+
void apply(Project project) {
10+
project.with {
11+
apply plugin : 'com.admc.javaPropFile'
12+
13+
// Everything in common-build.properties will be availabe on the 'cbp'
14+
// property object
15+
ext.cbp = propFileLoader.load file(
16+
"${rootProject.projectDir}/common-build.properties"
17+
), [ basedir : rootProject.projectDir,
18+
'sun.boot.class.path' : ''
19+
]
20+
21+
if(ext.cbp == null) {
22+
throw new GradleException ('ext.cbp is not defined. Did you load common-build.properties correctly?')
23+
}
24+
25+
26+
ext.requiresCBP = { String propName ->
27+
28+
if(cbp."${propName}" == null) {
29+
throw new GradleException ("${propName} is not defined in common-build.properties")
30+
}
31+
}
32+
}
33+
34+
}
35+
}

‎cmr-aether/aether.gradle

+5-12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
ext {
2+
ceylonModuleName = 'module-resolver-aether'
3+
}
4+
5+
apply from : "${rootProject.projectDir}/gradle/java-for-modules.gradle"
16

27
dependencies {
38
compile 'org.apache.maven:maven-model:3.3.9'
@@ -10,15 +15,3 @@ dependencies {
1015
compile 'org.eclipse.aether:aether-transport-file:1.1.0'
1116
compile 'org.eclipse.aether:aether-transport-http:1.1.0'
1217
}
13-
14-
jar {
15-
manifest {
16-
attributes 'Bundle-SymbolicName': 'com.redhat.ceylon.module-resolver-aether',
17-
'Bundle-Version': cbp.'module.com.redhat.ceylon.module-resolver-aether.version'+".${TimeStamp.BUILD}"
18-
}
19-
archiveName = "com.redhat.ceylon.module-resolver-aether-${cbp.'module.com.redhat.ceylon.module-resolver-aether.version'}.jar"
20-
}
21-
22-
publishJar {
23-
into "${cbp.'build.dist.repo'}/${cbp.'module-resolver-aether.dir'}"
24-
}

‎cmr-js/cmrjs.gradle

+6-11
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,11 @@
11

2-
dependencies {
3-
compile 'net.minidev:json-smart:1.1.1'
2+
ext {
3+
ceylonModuleName = 'module-resolver-javascript'
44
}
55

6-
jar {
7-
manifest {
8-
attributes 'Bundle-SymbolicName': 'com.redhat.ceylon.module-resolver-javascript',
9-
'Bundle-Version': cbp.'module.com.redhat.ceylon.module-resolver-javascript.version'+".${TimeStamp.BUILD}"
10-
}
11-
archiveName = "com.redhat.ceylon.module-resolver-javascript-${cbp.'module.com.redhat.ceylon.module-resolver-javascript.version'}.jar"
12-
}
6+
apply from : "${rootProject.projectDir}/gradle/java-for-modules.gradle"
137

14-
publishJar {
15-
into "${cbp.'build.dist.repo'}/${cbp.'ceylon.module-resolver-javascript.dir'}"
8+
dependencies {
9+
compile 'net.minidev:json-smart:1.1.1'
1610
}
11+

‎cmr/cmr.gradle

+2-82
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,10 @@
11

22
ext {
33
ceylonModuleName = 'module-resolver'
4+
ceylonSourceLayout = false
45
}
56

6-
// ----------------------------------------
7-
if(ext.ceylonModuleName == null) {
8-
throw new GradleException ('''ceylonModule name was not found. You need to define it in an extension block such as
9-
10-
ext {
11-
ceylonModuleName = 'foo'
12-
}
13-
14-
''')
15-
}
16-
17-
ext {
18-
requiresCBP = { String propName ->
19-
20-
if(ext.cbp == null) {
21-
throw new GradleException ('ext.cbp is not defined. Did you load common-build.properties correctly?')
22-
}
23-
24-
if(cbp."${propName}" == null) {
25-
throw new GradleException ("${propName} is not defined in common-build.properties")
26-
}
27-
}
28-
}
29-
30-
requiresCBP "module.com.redhat.ceylon.${ceylonModuleName}.version"
31-
requiresCBP 'build.dist.repo'
32-
requiresCBP "ceylon.${ceylonModuleName}.dir"
33-
34-
ext {
35-
bundleSymbolicName = 'com.redhat.ceylon.' + ceylonModuleName
36-
bundleVersionName = cbp."module.com.redhat.ceylon.${ceylonModuleName}.version"
37-
jarPublishDir = cbp.'build.dist.repo' + '/' + cbp."ceylon.${ceylonModuleName}.dir"
38-
}
39-
40-
41-
jar {
42-
manifest {
43-
attributes 'Bundle-SymbolicName': bundleSymbolicName,
44-
'Bundle-Version': bundleVersionName+".${TimeStamp.BUILD}"
45-
}
46-
archiveName = "com.redhat.ceylon.module-resolver-${bundleVersionName}.jar"
47-
}
48-
49-
publishJar {
50-
// TODO: From apiJar as well?
51-
into "${cbp.'build.dist.repo'}/${cbp.'ceylon.module-resolver.dir'}"
52-
}
53-
54-
// ----------------------------------------
7+
apply from : "${rootProject.projectDir}/gradle/java-for-modules.gradle"
558

569
dependencies {
5710
compile project(':common')
@@ -85,38 +38,5 @@ sourceSets {
8538
}
8639
}
8740

88-
//jar {
89-
// manifest {
90-
// attributes 'Bundle-SymbolicName': 'com.redhat.ceylon.module-resolver',
91-
// 'Bundle-Version': cbp.'module.com.redhat.ceylon.module-resolver.version'+".${TimeStamp.BUILD}"
92-
// }
93-
// archiveName = "com.redhat.ceylon.module-resolver-${cbp.'module.com.redhat.ceylon.module-resolver.version'}.jar"
94-
//}
95-
96-
97-
//task apiJar ( type : Jar ) {
98-
// from sourceSets.main.output.classesDir, {
99-
// include '**/spi/*'
100-
// include '**/api/*'
101-
// }
102-
//// archiveName = "com.redhat.ceylon.module-resolver-${cbp.'module.com.redhat.ceylon.module-resolver.version'}.jar"
103-
// archiveName = 'module-resolver-api.jar'
104-
// dependsOn classes
105-
//}
106-
//
107-
//sha1 {
108-
// archive apiJar
109-
//}
110-
//
111-
//artifacts {
112-
// archives apiJar
113-
//}
114-
115-
116-
//publishJar {
117-
// // TODO: From apiJar as well?
118-
// into "${cbp.'build.dist.repo'}/${cbp.'ceylon.module-resolver.dir'}"
119-
//}
120-
12141
//TODO: Remove this
12242
test.enabled = false

‎common/common.gradle

+5-53
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,10 @@
1-
2-
dependencies {
3-
compile 'org.tautua.markdownpapers:markdownpapers-core:1.2.7'
4-
}
5-
6-
task sourceZip( type : Zip ) {
7-
group 'Build'
8-
description 'Archives source files'
9-
10-
from 'src', {
11-
include '**/*.java'
12-
}
13-
14-
archiveName = "com.redhat.ceylon.common-${cbp.'module.com.redhat.ceylon.common.version'}.src.zip"
15-
}
16-
17-
jar {
18-
manifest {
19-
attributes 'Bundle-SymbolicName': 'com.redhat.ceylon.common',
20-
'Bundle-Version': cbp.'module.com.redhat.ceylon.common.version'+".${TimeStamp.BUILD}"
21-
}
22-
archiveName = "com.redhat.ceylon.common-${cbp.'module.com.redhat.ceylon.common.version'}.jar"
23-
}
24-
25-
sha1 {
26-
archive sourceZip
1+
ext {
2+
ceylonModuleName = 'common'
273
}
284

29-
task publishSource( type : Copy ) {
30-
group 'Distribution'
31-
description 'Copies sources artifacts to distribution area'
5+
apply from : "${rootProject.projectDir}/gradle/java-for-modules.gradle"
326

33-
from sha1, {
34-
include '**/*.zip'
35-
}
36-
from sourceZip
37-
38-
into "${cbp.'build.dist.repo'}/${cbp.'ceylon.common.src'}"
39-
}
40-
41-
publishJar {
42-
into "${cbp.'build.dist.repo'}/${cbp.'ceylon.common.dir'}"
43-
}
44-
45-
publishInternal {
46-
dependsOn publishSource
47-
}
48-
49-
task cleanRepo ( type : Delete ) {
50-
group 'Publish'
51-
description 'Deletes published artifacts'
52-
delete publishJar.outputs.files
53-
delete publishSource.outputs.files
7+
dependencies {
8+
compile 'org.tautua.markdownpapers:markdownpapers-core:1.2.7'
549
}
5510

56-
clean {
57-
dependsOn cleanRepo
58-
}

‎dist/dist.gradle

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
1+
apply plugin : LifecycleBasePlugin
22

33
task setupRepo {
44
dependsOn ':runtime:setupRepo'
55
}
66

77
task installCompiler {
88
dependsOn ':common:publishInternal'
9+
// dependsOn ':cli:publishInternal'
910
}
1011

1112
//<target name="install-compiler"

‎gradle-migration.adoc

+29-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Ant & Gradle builds.
77

88
* ide-quick
99
* bundle-proxy
10+
* Tests are disabled globally.
1011

1112
== Dist
1213

@@ -84,6 +85,7 @@ This has been straight-forward to do. There are no `*.utf8properties` files in t
8485
.TODO
8586
* Publishing
8687
* Source Zip
88+
* Do we need to set `-XDignore.symbol.file` for `JavaCompile` options?
8789

8890
== buildSrc
8991

@@ -99,4 +101,30 @@ project. This replaces the use of the `sha1sum` tasks in the Ant build.
99101

100102
A helper class has been added as `buildSrc/src/main.groovy/TimeStamp.groovy`. It sets a singular timestamp value
101103
at the beginning of the build which can then be used in all builds via `TimeStamp.BUILD`. This replaces the use of
102-
the `TStamp` ant task.
104+
the `TStamp` ant task.
105+
106+
=== CeylonCommonBuildProperties
107+
108+
This is a plugin that is applied which loads up the properties from `common-build.properties` and places it on the
109+
projet extension as a field called `cbp`.
110+
111+
It also provides a `requiresCBP` method that will fail the build if a specific property has not been found in
112+
`common-build.properties`.
113+
114+
== gradle
115+
116+
A number of common functionality not suitable for buildSrc have been added as buildscript in the `gradle` folder
117+
118+
=== requires-common-build-properties.gradle
119+
120+
Provides a `requiresCBP` method that will fail the build is a specific property has not been found in
121+
`common-build.properties`.
122+
123+
=== java-for-modules.gradle
124+
125+
Adds common `jar` and `publishInternal` configuration. It requires `ceylonModuleName` to be set before including it.
126+
If `ceylonSourceLayout` is set to `false` before inclusion it will not set up `sourceSets` to use the Ant layout.
127+
128+
It assumes that `ceylonModuleName` is used in a consistent manner throughout a specific manner. This usually works,
129+
but there some exceptions i.e. `classfile` and 'langtools.classfile`. For this case a subproject can manually set
130+
`ceylonPublishModuleName` to the `ceylon.XXXX.dir` part.

‎gradle/java-for-modules.gradle

+165
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,165 @@
1+
import org.apache.tools.ant.filters.EscapeUnicode
2+
3+
// Shorten the recipes required in Gradle scripts byt moving
4+
// a lot of the common code here.
5+
// Requires ext.ceylonModuleName to be set before applying this.
6+
7+
apply plugin : CeylonCommonBuildProperties
8+
9+
// ----------------------------------------------------------------------------
10+
// Fail if prequisite properties are not set in project extension
11+
// ----------------------------------------------------------------------------
12+
if(ext.ceylonModuleName == null) {
13+
throw new GradleException ('''ceylonModule name was not found. You need to define it in an extension block such as
14+
15+
ext {
16+
ceylonModuleName = 'foo'
17+
}
18+
19+
''')
20+
}
21+
22+
if(!ext.properties.containsKey('ceylonPublishModuleName')) {
23+
ext.ceylonPublishModuleName = ceylonModuleName
24+
}
25+
26+
// ----------------------------------------------------------------------------
27+
// Fail if prequisite properties are not in common-build.properties
28+
// ----------------------------------------------------------------------------
29+
requiresCBP "module.com.redhat.ceylon.${ceylonModuleName}.version"
30+
requiresCBP 'build.dist.repo'
31+
requiresCBP "ceylon.${ceylonPublishModuleName}.dir"
32+
33+
34+
ext {
35+
bundleSymbolicName = 'com.redhat.ceylon.' + ceylonModuleName
36+
bundleVersionName = cbp."module.com.redhat.ceylon.${ceylonModuleName}.version"
37+
archivePublishDir = cbp.'build.dist.repo' + '/' + cbp."ceylon.${ceylonPublishModuleName}.dir"
38+
}
39+
40+
if(!ext.properties.containsKey('ceylonSourceLayout')) {
41+
ext.ceylonSourceLayout = true
42+
}
43+
44+
apply plugin: 'java'
45+
46+
ext {
47+
// By default projects use a flat source hierarchy
48+
defaultSources = false
49+
}
50+
51+
dependencies {
52+
testCompile 'junit:junit:4.11'
53+
}
54+
55+
sourceCompatibility = 1.7
56+
targetCompatibility = 1.7
57+
58+
compileJava {
59+
options.encoding = 'UTF-8'
60+
}
61+
62+
assemble {
63+
dependsOn 'sha1'
64+
}
65+
66+
processResources {
67+
filesMatching 'com/redhat/**/*.utf8properties', { fcd ->
68+
fcd.filter EscapeUnicode
69+
fcd.name = fcd.name.replace('.utf8properties','.properties')
70+
}
71+
}
72+
73+
// Override the default Maven-like source hierarchy for
74+
// any projects where `defaultSources == false`
75+
if (ext.ceylonSourceLayout) {
76+
sourceSets {
77+
main {
78+
java {
79+
srcDir 'src'
80+
}
81+
resources {
82+
srcDir 'src'
83+
exclude '**/*.java'
84+
}
85+
}
86+
test {
87+
java {
88+
srcDir 'test/src'
89+
}
90+
resources {
91+
srcDir 'test/src'
92+
exclude '**/*.java'
93+
}
94+
}
95+
}
96+
}
97+
98+
99+
jar {
100+
manifest {
101+
attributes 'Bundle-SymbolicName': bundleSymbolicName,
102+
'Bundle-Version': bundleVersionName+".${TimeStamp.BUILD}"
103+
}
104+
archiveName = "${bundleSymbolicName}-${bundleVersionName}.jar"
105+
}
106+
107+
task sourceZip( type : Zip ) {
108+
group 'Build'
109+
description 'Archives source files'
110+
111+
from sourceSets.main.allSource, {
112+
include '**/*.java'
113+
}
114+
115+
archiveName = "${bundleSymbolicName}-${bundleVersionName}.src"
116+
}
117+
118+
task sha1 ( type : Checksum ) {
119+
archive jar
120+
archive sourceZip
121+
dependsOn jar, sourceZip
122+
}
123+
124+
125+
task publishJar( type : Copy ) {
126+
group 'Distribution'
127+
description 'Copies binary artifacts to distribution area'
128+
129+
from sha1, {
130+
include '**/*.jar.*'
131+
}
132+
133+
from jar
134+
into archivePublishDir
135+
}
136+
137+
task publishSource( type : Copy ) {
138+
group 'Distribution'
139+
description 'Copies sources artifacts to distribution area'
140+
141+
from sha1, {
142+
include '**/*.src.*'
143+
}
144+
from sourceZip
145+
146+
into archivePublishDir
147+
}
148+
149+
task publishInternal {
150+
dependsOn 'publishJar','publishSource'
151+
}
152+
153+
task cleanRepo ( type : Delete ) {
154+
group 'Publish'
155+
description 'Deletes published artifacts'
156+
delete publishJar.outputs.files
157+
delete publishSource.outputs.files
158+
}
159+
160+
clean {
161+
dependsOn cleanRepo
162+
}
163+
164+
// TODO: Fix tests
165+
test.enabled = false

‎langtools-classfile/langtools.gradle

+8-13
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,14 @@
1+
apply plugin : CeylonCommonBuildProperties
2+
requiresCBP 'ceylon.classfile.dir'
13

2-
dependencies {
3-
compile project(':common')
4-
}
5-
6-
jar {
7-
manifest {
8-
attributes 'Bundle-SymbolicName': 'com.redhat.ceylon.langtools.classfile',
9-
'Bundle-Version': cbp.'module.com.redhat.ceylon.langtools.classfile.version'+".${TimeStamp.BUILD}"
10-
}
11-
archiveName = "com.redhat.ceylon.langtools.classfile-${cbp.'module.com.redhat.ceylon.langtools.classfile.version'}.jar"
4+
ext {
5+
ceylonModuleName = 'langtools.classfile'
6+
ceylonPublishModuleName = 'classfile'
127
}
138

9+
apply from : "${rootProject.projectDir}/gradle/java-for-modules.gradle"
1410

15-
// TODO: Do we need to set <compilerarg value="-XDignore.symbol.file" /> for JavaCompile options?
1611

17-
publishJar {
18-
into "${cbp.'build.dist.repo'}/${cbp.'ceylon.classfile.dir'}"
12+
dependencies {
13+
compile project(':common')
1914
}

‎model/model.gradle

+5-14
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,11 @@
1+
ext {
2+
ceylonModuleName = 'model'
3+
}
4+
5+
apply from : "${rootProject.projectDir}/gradle/java-for-modules.gradle"
16

27
dependencies {
38
compile project(':common')
49
compile project(':langtools-classfile')
510
}
611

7-
8-
jar {
9-
manifest {
10-
attributes 'Bundle-SymbolicName': 'com.redhat.ceylon.model',
11-
'Bundle-Version': cbp.'module.com.redhat.ceylon.model.version'+".${TimeStamp.BUILD}"
12-
}
13-
archiveName = "com.redhat.ceylon.model-${cbp.'module.com.redhat.ceylon.model.version'}.jar"
14-
}
15-
16-
17-
publishJar {
18-
into "${cbp.'build.dist.repo'}/${cbp.'ceylon.model.dir'}"
19-
}
20-

0 commit comments

Comments
 (0)
Please sign in to comment.