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
0 commit comments