Pierre De Rop | 3a00a21 | 2015-03-01 09:27:46 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Licensed to the Apache Software Foundation (ASF) under one |
| 3 | * or more contributor license agreements. See the NOTICE file |
| 4 | * distributed with this work for additional information |
| 5 | * regarding copyright ownership. The ASF licenses this file |
| 6 | * to you under the Apache License, Version 2.0 (the |
| 7 | * "License"); you may not use this file except in compliance |
| 8 | * with the License. You may obtain a copy of the License at |
| 9 | * |
| 10 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | * |
| 12 | * Unless required by applicable law or agreed to in writing, |
| 13 | * software distributed under the License is distributed on an |
| 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | * KIND, either express or implied. See the License for the |
| 16 | * specific language governing permissions and limitations |
| 17 | * under the License. |
| 18 | */ |
| 19 | |
| 20 | /** |
| 21 | * Gradle script used to perform DM releases (really similar to Apache ACE build.xml) |
| 22 | */ |
| 23 | import aQute.bnd.build.Workspace |
| 24 | |
| 25 | // Our release number, which has to be monotonically incremented each time we make a new release. |
Pierre De Rop | e91fae5 | 2015-03-19 06:19:16 +0000 | [diff] [blame] | 26 | ext.dmRelease = "r2" |
Pierre De Rop | 3a00a21 | 2015-03-01 09:27:46 +0000 | [diff] [blame] | 27 | |
| 28 | // Our Apache svn Staging repo |
| 29 | ext.svnStagingPath = "https://dist.apache.org/repos/dist/dev/felix" |
| 30 | |
| 31 | // Our Apache svn Release repo |
| 32 | ext.svnReleasePath = "https://dist.apache.org/repos/dist/release/felix" |
| 33 | |
| 34 | apply plugin: 'java' |
| 35 | apply from: file("rat.gradle") |
| 36 | |
| 37 | // Add bnd as a build dependency |
| 38 | buildscript { |
| 39 | dependencies { |
| 40 | classpath files('cnf/gradle/biz.aQute.bnd.gradle.jar') |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | // Configure RAT plugin to ignore some files |
| 45 | rat { |
| 46 | excludes = [ |
| 47 | 'rat-report.xml', |
| 48 | '**/.git/**', |
| 49 | '**/.gradle/**', |
| 50 | '**/.project', |
| 51 | '**/.settings/**', |
| 52 | '**/*.iml', |
| 53 | '**/*.iws', |
| 54 | '**/*.ipr', |
| 55 | '**/.classpath', |
| 56 | 'cnf/**', |
| 57 | 'gradle/wrapper/**', |
| 58 | 'release/**', |
| 59 | 'gradlew', |
| 60 | 'README', |
| 61 | '**/DEPENDENCIES', |
| 62 | '**/README', |
| 63 | '**/.gitignore', |
| 64 | '**/generated/**', |
| 65 | 'doc/**', |
| 66 | '**/packageinfo', |
| 67 | '**/*.txt', |
| 68 | 'docs/**', |
| 69 | '.metadata/**' |
| 70 | ] |
| 71 | } |
| 72 | |
| 73 | // Setup the workspace |
| 74 | Workspace workspace |
| 75 | workspace = Workspace.getWorkspace(".") |
| 76 | |
| 77 | task makeStaging << { |
| 78 | description = 'Packages the source and binary distributions.' |
| 79 | |
| 80 | // Package source and source bin dependencies distributions. |
| 81 | logger.lifecycle(" Packaging source distributions.") |
| 82 | def topdir="org.apache.felix.dependencymanager-" + dmRelease |
| 83 | ant.zip(destfile: "staging/"+topdir+'-src.zip') { |
| 84 | zipfileset(dir: '../cnf', prefix: topdir+"-src/cnf", includes: ".project,.classpath,src/**,*.bnd,ext/**") |
| 85 | zipfileset(dir: '..', prefix: topdir+"-src", includes: '*.gradle,*.properties') |
| 86 | zipfileset(dir: 'resources/src', prefix: topdir+"-src", includes: '*') |
| 87 | new File('.').eachFile { |
| 88 | if(new File(it, 'bnd.bnd').exists()) { |
| 89 | def bndProject = workspace.getProject(it.name) |
| 90 | if (! bndProject.isNoBundles() && ! bndProject.getName().endsWith(".benchmark")) { |
| 91 | zipfileset(dir: "../${bndProject.name}", prefix: topdir+"-src/${bndProject.name}", |
| 92 | includes: "*.gradle,.project,.classpath,.settings/**,src/**,test/**,*.bnd,*.bndrun,run-*/conf/**,resources/**,README*") |
| 93 | } |
| 94 | } |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | // Package binary dependencies, needed to build the source distributions. |
| 99 | logger.lifecycle(" Packaging binary dependencies.") |
| 100 | ant.zip(destfile: "staging/"+topdir+"-deps.zip") { |
| 101 | ant.zipfileset(dir: '..', prefix: topdir+"-src", includes: 'gradlew') |
| 102 | ant.zipfileset(dir: '../gradle', prefix: topdir+"-src/gradle", includes: '*') |
| 103 | ant.zipfileset(dir: 'resources/deps', prefix: topdir+"-src", includes: '*') |
| 104 | ant.zipfileset(dir: '../cnf', prefix: topdir+"-src/cnf", |
| 105 | includes: 'buildrepo/**,localrepo/**,releaserepo/**,plugins/**,gradle/**') |
| 106 | } |
| 107 | |
| 108 | // Package binaries as a simple collection of bundles. We use same license files as for src distrib. |
| 109 | logger.lifecycle(" Packaging binary distribution.") |
| 110 | ant.zip(destfile: "staging/"+topdir+"-bin.zip") { |
| 111 | ant.mappedresources() { |
| 112 | // don't include itests, samples, and benchmark in the convenience binary release. |
| 113 | ant.fileset(dir: '..', includes: '*/generated/*.jar', excludes: '*.itest/generated/*.jar,*.benchmark/generated/*.jar,*.samples/generated/*.jar') |
| 114 | ant.chainedmapper() { |
| 115 | ant.flattenmapper() |
| 116 | ant.globmapper(from: '*', to: topdir+'-bin/*') |
| 117 | } |
| 118 | } |
| 119 | ant.mappedresources() { |
| 120 | ant.fileset(dir: 'resources/bin', includes: '*') |
| 121 | ant.chainedmapper() { |
| 122 | ant.flattenmapper() |
| 123 | ant.globmapper(from: '*', to: topdir+'-bin/*') |
| 124 | } |
| 125 | } |
| 126 | } |
| 127 | } |
| 128 | |
| 129 | // Sign staging directory |
| 130 | task signStaging << { |
| 131 | description = 'Signs the local staging distribution.' |
| 132 | fileTree("staging").visit { FileVisitDetails details -> |
| 133 | logger.lifecycle(" Signing " + details.file.path) |
| 134 | ant.exec(executable: 'gpg', dir: 'staging') { |
| 135 | ant.arg(line: '--armor') |
| 136 | ant.arg(line: '--output') |
| 137 | ant.arg(line: details.file.name + ".asc") |
| 138 | ant.arg(line: "--detach-sig") |
| 139 | ant.arg(line: details.file.name) |
| 140 | } |
| 141 | |
| 142 | ant.exec(executable: 'gpg', dir: 'staging', output: "staging/" + details.file.name + ".md5") { |
| 143 | ant.arg(line: '--print-md') |
| 144 | ant.arg(line: 'MD5') |
| 145 | ant.arg(line: details.file.name) |
| 146 | } |
| 147 | |
| 148 | ant.exec(executable: 'gpg', dir: 'staging', output: "staging/" + details.file.name + ".sha") { |
| 149 | ant.arg(line: '--print-md') |
| 150 | ant.arg(line: 'SHA512') |
| 151 | ant.arg(line: details.file.name) |
| 152 | } |
| 153 | } |
| 154 | } |
| 155 | |
| 156 | |
| 157 | // Moves the source and binary distributions to staging. |
| 158 | task commitToStaging << { |
| 159 | description = 'Commits the local staging to the Apache svn staging repository.' |
| 160 | getProject().exec { |
| 161 | commandLine 'svn', |
| 162 | 'import', 'staging', svnStagingPath + "/org.apache.felix.dependencymanager-" + dmRelease + "/", |
| 163 | '-m', "Staging Apache Felix Dependency Manager release " + dmRelease + "." |
| 164 | } |
| 165 | } |
| 166 | |
| 167 | // Promotes the staged distributions to release |
| 168 | task promoteToRelease << { |
| 169 | description = 'Moves the staging repository to the Apache release repository.' |
Pierre De Rop | e91fae5 | 2015-03-19 06:19:16 +0000 | [diff] [blame] | 170 | new File("staging-copy").deleteDir() |
| 171 | |
Pierre De Rop | 3a00a21 | 2015-03-01 09:27:46 +0000 | [diff] [blame] | 172 | getProject().exec { |
| 173 | commandLine 'svn', |
Pierre De Rop | e91fae5 | 2015-03-19 06:19:16 +0000 | [diff] [blame] | 174 | 'co', svnStagingPath+"/org.apache.felix.dependencymanager-" + dmRelease, "staging-copy" |
Pierre De Rop | 3a00a21 | 2015-03-01 09:27:46 +0000 | [diff] [blame] | 175 | } |
Pierre De Rop | e91fae5 | 2015-03-19 06:19:16 +0000 | [diff] [blame] | 176 | |
| 177 | new File('release/staging-copy/.').eachFile { |
| 178 | if (it.name != ".svn") { |
| 179 | def file=it.name |
| 180 | getProject().exec { |
| 181 | commandLine 'svn', |
| 182 | 'cp', "staging-copy/" + file, svnReleasePath + "/", "-m", "Releasing Apache Felix Dependency Manager release " + dmRelease + "." |
| 183 | } |
| 184 | } |
| 185 | } |
| 186 | |
| 187 | getProject().exec { |
| 188 | commandLine 'svn', |
| 189 | 'rm', svnStagingPath+"/org.apache.felix.dependencymanager-" + dmRelease, "-m", |
| 190 | "Releasing Apache Felix Dependency Manager release " + dmRelease + "." |
| 191 | } |
| 192 | |
| 193 | new File("release/staging-copy").deleteDir() |
Pierre De Rop | 3a00a21 | 2015-03-01 09:27:46 +0000 | [diff] [blame] | 194 | } |
| 195 | |
| 196 | // Removes the staged distributions from staging |
| 197 | task deleteFromStaging << { |
| 198 | description = 'Cancels the staged distribution from the Apache staging repository.' |
| 199 | getProject().exec { |
| 200 | commandLine 'svn', |
| 201 | 'delete', svnStagingPath+"/org.apache.felix.dependencymanager-" + dmRelease + "/", |
| 202 | "-m", "Removing Apache Felix Dependency Manager release " + dmRelease + " from staging." |
| 203 | } |
| 204 | } |
| 205 | |
| 206 | // Clean staging directory |
| 207 | task clean(overwrite: true) << { |
| 208 | new File("release/staging").deleteDir() |
Pierre De Rop | e91fae5 | 2015-03-19 06:19:16 +0000 | [diff] [blame] | 209 | new File("release/staging-copy").deleteDir() |
Pierre De Rop | 3a00a21 | 2015-03-01 09:27:46 +0000 | [diff] [blame] | 210 | new File("rat-report.xml").delete() |
| 211 | } |
| 212 | |
| 213 | // Only clean the staging directory |
| 214 | task cleanStaging << { |
| 215 | description = 'Clean the local staging directory.' |
| 216 | new File("release/staging").deleteDir() |
Pierre De Rop | e91fae5 | 2015-03-19 06:19:16 +0000 | [diff] [blame] | 217 | new File("release/staging-copy").deleteDir() |
Pierre De Rop | 3a00a21 | 2015-03-01 09:27:46 +0000 | [diff] [blame] | 218 | } |