Stephan Herrmann | ee73d53 | 2016-12-20 23:37:28 +0100 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | #******************************************************************************* |
| 3 | # Copyright (c) 2016 GK Software AG and others. |
| 4 | # All rights reserved. This program and the accompanying materials |
| 5 | # are made available under the terms of the Eclipse Public License v1.0 |
| 6 | # which accompanies this distribution, and is available at |
| 7 | # http://www.eclipse.org/legal/epl-v10.html |
| 8 | # |
| 9 | # Contributors: |
| 10 | # Stephan Herrmann - initial API and implementation |
| 11 | #******************************************************************************** |
| 12 | |
| 13 | #================================================================================ |
| 14 | # Parameters we might want to externalize into a properties file |
| 15 | #================================================================================ |
| 16 | |
| 17 | # ECLIPSE: |
| 18 | DROPS4=/home/data/httpd/archive.eclipse.org/eclipse/downloads/drops4 |
| 19 | FILE_ECLIPSE=${DROPS4}/R-4.6.1-201609071200/eclipse-SDK-4.6.1-linux-gtk-x86_64.tar.gz |
| 20 | APP_NAME_P2DIRECTOR=org.eclipse.equinox.p2.director |
| 21 | |
| 22 | # QUESTION: set tmpdir? (-vmargs not accepted by director application?) |
| 23 | |
| 24 | # AGGREGATOR: |
| 25 | IU_AGG_PRODUCT=org.eclipse.cbi.p2repo.cli.product |
| 26 | URL_AGG_UPDATES=http://download.eclipse.org/cbi/updates/aggregator/headless/4.6/ |
| 27 | |
Stephan Herrmann | b3148c6 | 2016-12-21 00:42:13 +0100 | [diff] [blame] | 28 | FILE_SDK_AGGR=${WORKSPACE}/SDK4Mvn.aggr |
Stephan Herrmann | ee73d53 | 2016-12-20 23:37:28 +0100 | [diff] [blame] | 29 | |
| 30 | # ENRICH POMS tool: |
Stephan Herrmann | 8f2b5ab | 2016-12-21 00:23:47 +0100 | [diff] [blame] | 31 | ENRICH_POMS_JAR=${WORKSPACE}/../../pomEnricher/workspace/EnrichPoms.jar |
Stephan Herrmann | ee73d53 | 2016-12-20 23:37:28 +0100 | [diff] [blame] | 32 | |
| 33 | # LOCAL TOOLS: |
| 34 | LOCAL_TOOLS=${WORKSPACE}/tools |
| 35 | DIR_AGGREGATOR=aggregator |
| 36 | AGGREGATOR=${LOCAL_TOOLS}/${DIR_AGGREGATOR}/cbiAggr |
| 37 | ECLIPSE=${LOCAL_TOOLS}/eclipse/eclipse |
| 38 | |
| 39 | #================================================================================ |
| 40 | # Util functions |
| 41 | #================================================================================ |
| 42 | function require_executable() { |
| 43 | if [ -x ${1} ] |
| 44 | then |
| 45 | echo "Successfully installed: ${1}" |
| 46 | else |
| 47 | echo "not executable: ${1}" |
| 48 | /bin/ls -l ${1} |
| 49 | exit 1 |
| 50 | fi |
| 51 | } |
| 52 | |
Stephan Herrmann | 9a98101 | 2017-01-01 11:05:54 +0100 | [diff] [blame] | 53 | #================================================================================ |
| 54 | # (1) Install and run the CBI aggregator |
| 55 | #================================================================================ |
| 56 | echo "==== CBI aggregator ====" |
| 57 | |
Stephan Herrmann | b3148c6 | 2016-12-21 00:42:13 +0100 | [diff] [blame] | 58 | # -------- fetch .aggr file **TEMP** will eventually move to the releng git: ------------ |
| 59 | git archive --remote=file://localhost/gitroot/objectteams/org.eclipse.objectteams.git \ |
| 60 | master releng/EnrichPoms/SDK4Mvn.aggr \ |
| 61 | | tar xv |
| 62 | /bin/mv releng/EnrichPoms/SDK4Mvn.aggr ${WORKSPACE}/ |
| 63 | /bin/rmdir -p releng/EnrichPoms |
| 64 | |
Stephan Herrmann | ee73d53 | 2016-12-20 23:37:28 +0100 | [diff] [blame] | 65 | if [ ! -d ${LOCAL_TOOLS} ] |
| 66 | then |
| 67 | /bin/mkdir ${LOCAL_TOOLS} |
| 68 | fi |
| 69 | |
| 70 | if [ ! -x ${ECLIPSE} ] |
| 71 | then |
| 72 | cd ${LOCAL_TOOLS} |
Stephan Herrmann | 9a98101 | 2017-01-01 11:05:54 +0100 | [diff] [blame] | 73 | echo "Extracting Eclipse from ${FILE_ECLIPSE} ..." |
Stephan Herrmann | ee73d53 | 2016-12-20 23:37:28 +0100 | [diff] [blame] | 74 | tar xf ${FILE_ECLIPSE} |
| 75 | cd ${WORKSPACE} |
| 76 | fi |
| 77 | require_executable ${ECLIPSE} |
| 78 | |
| 79 | if [ ! -x ${AGGREGATOR} ] |
| 80 | then |
Stephan Herrmann | 9a98101 | 2017-01-01 11:05:54 +0100 | [diff] [blame] | 81 | echo "Installing the CBI aggregator into ${LOCAL_TOOLS}/${DIR_AGGREGATOR} ..." |
Stephan Herrmann | ee73d53 | 2016-12-20 23:37:28 +0100 | [diff] [blame] | 82 | ${ECLIPSE} -application ${APP_NAME_P2DIRECTOR} \ |
| 83 | -r ${URL_AGG_UPDATES} \ |
| 84 | -d ${LOCAL_TOOLS}/${DIR_AGGREGATOR} -p CBIProfile \ |
| 85 | -installIU ${IU_AGG_PRODUCT} |
| 86 | fi |
| 87 | require_executable ${AGGREGATOR} |
| 88 | |
| 89 | RepoRaw=${WORKSPACE}/reporaw-${BUILD_NUMBER} |
| 90 | Repo=${WORKSPACE}/repo-${BUILD_NUMBER} |
| 91 | /bin/mkdir ${RepoRaw} |
| 92 | |
Stephan Herrmann | 9a98101 | 2017-01-01 11:05:54 +0100 | [diff] [blame] | 93 | echo "Running the aggregator with build model ${FILE_SDK_AGGR} ..." |
Stephan Herrmann | ee73d53 | 2016-12-20 23:37:28 +0100 | [diff] [blame] | 94 | ${AGGREGATOR} aggregate --buildModel ${FILE_SDK_AGGR} --action CLEAN_BUILD --buildRoot ${RepoRaw} |
| 95 | if [ "$?" != "0" ] |
| 96 | then |
| 97 | echo "FAILURE $?" |
| 98 | exit 1 |
| 99 | fi |
| 100 | /bin/mv ${RepoRaw}/final ${Repo} |
| 101 | /bin/rm -rf ${RepoRaw} |
| 102 | |
| 103 | echo "========== Repo created: ==========" |
| 104 | /usr/bin/du -sc ${Repo}/* |
| 105 | /usr/bin/du -sc ${Repo}/org/* |
| 106 | /usr/bin/du -sc ${Repo}/org/eclipse/* |
| 107 | echo "===================================" |
| 108 | |
| 109 | |
| 110 | #================================================================================ |
| 111 | # (2) Remove irrelevant stuff |
| 112 | #================================================================================ |
| 113 | # Removes from the build output of cbiAggregator everything that is not relevant for maven. |
| 114 | # All removed directories / files will be logged to .logs/removed.txt |
| 115 | |
| 116 | echo "==== Remove irrelevant stuff ====" |
| 117 | |
| 118 | cd ${Repo} |
| 119 | |
| 120 | if [ ! -d .logs ] |
| 121 | then |
| 122 | /bin/mkdir .logs |
| 123 | elif [ -f .logs/removed.txt ] |
| 124 | then |
| 125 | /bin/rm .logs/removed.txt |
| 126 | fi |
| 127 | |
| 128 | #==== remove the p2 repository (not logged): ==== |
| 129 | |
| 130 | /bin/rm -r p2.index p2.packed content.jar artifacts.jar |
| 131 | |
| 132 | #==== remove -sources artifacts, misplaced due to quirk from https://bugs.eclipse.org/508910: ==== |
| 133 | |
| 134 | echo "== Misplaced -sources artifacts: ==" | tee >> .logs/removed.txt |
| 135 | |
| 136 | # works only outside org/eclipse/{platform,jdt,pde}: |
| 137 | |
| 138 | /usr/bin/find -type d -name platform -prune -o -name jdt -prune -o -name pde -prune -o \ |
| 139 | -name \*-sources.jar\* -print -exec /bin/rm {} \; >> .logs/removed.txt |
| 140 | |
| 141 | #==== remove features: ==== |
| 142 | |
| 143 | echo "== Features: ==" | tee >> .logs/removed.txt |
| 144 | |
| 145 | /usr/bin/find * -type d -name \*feature.group -print -exec /bin/rm -rf {} \; -prune >> .logs/removed.txt |
| 146 | /usr/bin/find * -type d -name \*feature.jar -print -exec /bin/rm -rf {} \; -prune >> .logs/removed.txt |
| 147 | |
| 148 | #==== remove eclipse test plug-ins: ==== |
| 149 | |
| 150 | echo "== Test plugins: ==" | tee >> .logs/removed.txt |
| 151 | |
| 152 | ls -d org/eclipse/*/*test* >> .logs/removed.txt |
| 153 | /bin/rm -r org/eclipse/*/*test* |
| 154 | |
| 155 | #==== remove other non-artifacts: ==== |
| 156 | |
| 157 | echo "== Other non-artifacts: ==" | tee >> .logs/removed.txt |
| 158 | |
| 159 | /usr/bin/find tooling -type d >> .logs/removed.txt |
| 160 | /bin/rm -r tooling* |
| 161 | |
| 162 | # ... folders that contain only 1.2.3/foo-1.2.3.pom but no corresponding 1.2.3/foo-1.2.3.jar: |
| 163 | function hasPomButNoJar() { |
| 164 | cd ${1} |
| 165 | # expect only one sub-directory, starting with a digit, plus maven-metadata.xml*: |
| 166 | other=`ls -d [!0-9]* 2> /dev/null` |
Stephan Herrmann | 0b6f393 | 2017-01-01 21:17:57 +0100 | [diff] [blame] | 167 | if echo "${other}" | tr "\n" " " | egrep "^maven-metadata.xml maven-metadata.xml.md5 maven-metadata.xml.sha1 \$" |
Stephan Herrmann | ee73d53 | 2016-12-20 23:37:28 +0100 | [diff] [blame] | 168 | then |
Stephan Herrmann | 0a35892 | 2017-01-01 11:19:36 +0100 | [diff] [blame] | 169 | : # clean -> proceed below |
Stephan Herrmann | 9a98101 | 2017-01-01 11:05:54 +0100 | [diff] [blame] | 170 | else |
| 171 | exit 1 # unexpected content found, don't remove |
Stephan Herrmann | ee73d53 | 2016-12-20 23:37:28 +0100 | [diff] [blame] | 172 | fi |
| 173 | # scan all *.pom inside the version sub-directory |
| 174 | r=1 |
| 175 | for pom in `ls [0-9]*/*.pom 2> /dev/null` |
| 176 | do |
| 177 | jar=`echo ${pom} | sed -e "s|\(.*\)\.pom|\1.jar|"` |
| 178 | if [ -f ${jar} ] |
| 179 | then |
| 180 | # jar found, so keep it |
| 181 | exit 1 |
| 182 | fi |
| 183 | # pom without jar found, let's answer true below |
| 184 | r=0 |
| 185 | done |
| 186 | exit $r |
| 187 | } |
| 188 | export -f hasPomButNoJar |
| 189 | |
| 190 | /usr/bin/find org/eclipse/{jdt,pde,platform} -type d \ |
| 191 | -exec /bin/bash -c 'hasPomButNoJar "$@"' bash {} \; \ |
| 192 | -print -exec /bin/rm -rf {} \; -prune >> .logs/removed.txt |
| 193 | # second "bash" is used as $0 in the function |
| 194 | |
| 195 | cd ${WORKSPACE} |
| 196 | |
| 197 | echo "========== Repo reduced: ==========" |
| 198 | /usr/bin/du -sc ${Repo}/* |
| 199 | /usr/bin/du -sc ${Repo}/org/* |
| 200 | /usr/bin/du -sc ${Repo}/org/eclipse/* |
| 201 | echo "===================================" |
| 202 | |
| 203 | #================================================================================ |
| 204 | # (2) Garbage Collector |
| 205 | #================================================================================ |
| 206 | # Removes from the build output of cbiAggregator everything that is not referenced |
| 207 | # from any pom below org/eclipse/{platform,jdt,pde} |
| 208 | # |
| 209 | # Log output: |
| 210 | # .logs/removedGarbage.txt all directories during garbage collection |
| 211 | # .logs/gc.log incoming dependencies of retained artifacts |
| 212 | # .logs/empty-dirs.txt removed empty directories |
| 213 | |
| 214 | echo "==== Garbage Collector ====" |
| 215 | |
| 216 | cd ${Repo} |
| 217 | |
| 218 | #==== function gc_bundle(): ==== |
| 219 | # Test if pom ${1} is referenced in any other pom. |
| 220 | # If not, append the containing directory to the file "toremove.txt" |
| 221 | function gc_bundle { |
| 222 | AID=`echo ${1} | sed -e "s|.*/\(.*\)[_-].*|\1|"` |
| 223 | DIR=`echo ${1} | sed -e "s|\(.*\)/[0-9].*|\1|"` |
| 224 | POM=`basename ${1}` |
| 225 | |
| 226 | ANSWER=`find org/eclipse/{platform,jdt,pde} -name \*.pom \! -name ${POM} \ |
| 227 | -exec /bin/grep -q "<artifactId>${AID}</artifactId>" {} \; -print -quit` |
| 228 | |
| 229 | if [ "$ANSWER" == "" ] |
| 230 | then |
| 231 | echo "Will remove $DIR" |
| 232 | echo $DIR >> toremove.txt |
| 233 | else |
| 234 | echo "$1 is used by $ANSWER" |
| 235 | fi |
| 236 | } |
| 237 | export -f gc_bundle |
| 238 | |
| 239 | #==== run the garbage collector: ==== |
| 240 | # iterate (max 5 times) in case artifacts were used only from garbage: |
| 241 | for iteration in 1 2 3 4 5 |
| 242 | do |
| 243 | echo "== GC iteration ${iteration} ==" |
| 244 | |
| 245 | # look for garbage only outside platform, jdt or pde folders: |
| 246 | find -name platform -prune -o -name jdt -prune -o -name pde -prune -o \ |
| 247 | -name \*.pom -exec /bin/bash -c 'gc_bundle "$@"' bash {} \; \ |
| 248 | > gc-${iteration}.log |
| 249 | # second "bash" is used as $0 in the function |
| 250 | |
| 251 | if [ ! -f toremove.txt ] |
| 252 | then |
| 253 | # no more garbage found |
| 254 | break |
| 255 | fi |
| 256 | cat toremove.txt >> .logs/removedGarbage.txt |
| 257 | for d in `cat toremove.txt`; do /bin/rm -r $d; done |
| 258 | /bin/rm toremove.txt |
| 259 | done |
| 260 | |
| 261 | # merge gc logs: |
| 262 | cat gc-*.log | sort --unique > .logs/gc.log |
| 263 | /bin/rm gc-*.log |
| 264 | |
| 265 | #==== remove all directories that have become empty: ==== |
| 266 | for iteration in 1 2 3 4 5 ; do find -type d -empty -print \ |
| 267 | -exec /bin/rmdir {} \; -prune; done \ |
| 268 | >> .logs/empty-dirs.txt |
| 269 | |
| 270 | echo "========== Repo reduced: ==========" |
| 271 | /usr/bin/du -sc ${Repo}/* |
| 272 | /usr/bin/du -sc ${Repo}/org/* |
| 273 | /usr/bin/du -sc ${Repo}/org/eclipse/* |
| 274 | echo "===================================" |
| 275 | |
| 276 | cd ${WORKSPACE} |
| 277 | |
| 278 | #================================================================================ |
| 279 | # (3) Enrich POMs |
| 280 | #================================================================================ |
| 281 | # Add some required information to the generated poms: |
| 282 | # - dynamic content (retrieved mostly from MANIFEST.MF): |
| 283 | # - name |
| 284 | # - url |
Stephan Herrmann | 9a98101 | 2017-01-01 11:05:54 +0100 | [diff] [blame] | 285 | # - scm connection, tag and url |
| 286 | # - semi dynamic |
| 287 | # - developers (based on static map git-repo-base -> project leads) |
Stephan Herrmann | ee73d53 | 2016-12-20 23:37:28 +0100 | [diff] [blame] | 288 | # - static content |
| 289 | # - license |
| 290 | # - organization |
| 291 | # - issue management |
| 292 | |
| 293 | |
| 294 | echo "==== Enrich POMs ====" |
| 295 | |
| 296 | cd ${Repo} |
| 297 | |
| 298 | echo "platform" |
| 299 | java -jar ${ENRICH_POMS_JAR} `pwd`/org/eclipse/platform &> .logs/enrich-platform.txt |
| 300 | echo "jdt" |
| 301 | java -jar ${ENRICH_POMS_JAR} `pwd`/org/eclipse/jdt &> .logs/enrich-jdt.txt |
| 302 | echo "pde" |
| 303 | java -jar ${ENRICH_POMS_JAR} `pwd`/org/eclipse/pde &> .logs/enrich-pde.txt |
| 304 | |
| 305 | echo "== updated checksums ==" |
| 306 | |
| 307 | function updateCheckSums() { |
| 308 | /usr/bin/md5sum ${1} | cut -d " " -f 1 > ${1}.md5 |
| 309 | /usr/bin/sha1sum ${1} | cut -d " " -f 1 > ${1}.sha1 |
| 310 | } |
| 311 | |
| 312 | for pom in org/eclipse/{platform,jdt,pde}/*/*/*.pom |
| 313 | do |
| 314 | updateCheckSums ${pom} |
| 315 | done |
| 316 | |
Stephan Herrmann | 9a98101 | 2017-01-01 11:05:54 +0100 | [diff] [blame] | 317 | echo "==== Add Javadoc stubs ====" |
Stephan Herrmann | 42f24c9 | 2016-12-31 16:53:10 +0100 | [diff] [blame] | 318 | |
Stephan Herrmann | 07ae09f | 2017-01-01 18:58:28 +0100 | [diff] [blame] | 319 | cd ${Repo} |
| 320 | |
Stephan Herrmann | 42f24c9 | 2016-12-31 16:53:10 +0100 | [diff] [blame] | 321 | # (groupSimpleName, javadocArtifactGA) |
| 322 | function createJavadocs() { |
| 323 | group=${1} |
| 324 | jar="${1}-javadoc.jar" |
| 325 | artifact=${2} |
| 326 | if [ -r ${jar} ] |
| 327 | then |
| 328 | /bin/rm ${jar} |
| 329 | fi |
Stephan Herrmann | 9fc05c9 | 2016-12-31 17:35:26 +0100 | [diff] [blame] | 330 | echo -e "Corresponding javadoc can be found in artifact ${artifact}\n" > README.txt |
Stephan Herrmann | 42f24c9 | 2016-12-31 16:53:10 +0100 | [diff] [blame] | 331 | jar cf ${jar} README.txt |
| 332 | for pom in org/eclipse/${group}/*/*/*.pom |
| 333 | do |
| 334 | javadoc=`echo ${pom} | sed -e "s|\(.*\)\.pom|\1-javadoc.jar|"` |
| 335 | /bin/cp ${jar} ${javadoc} |
| 336 | done |
| 337 | } |
| 338 | |
| 339 | createJavadocs platform org.eclipse.platform:org.eclipse.platform.doc.isv |
| 340 | createJavadocs jdt org.eclipse.jdt:org.eclipse.jdt.doc.isv |
| 341 | createJavadocs pde org.eclipse.pde:org.eclipse.pde.doc.user |
Stephan Herrmann | ee73d53 | 2016-12-20 23:37:28 +0100 | [diff] [blame] | 342 | |
Stephan Herrmann | 07ae09f | 2017-01-01 18:58:28 +0100 | [diff] [blame] | 343 | echo "==== Create missing sources artifacts ====" |
| 344 | |
| 345 | cd ${Repo} |
| 346 | |
| 347 | function buildSourceJar() { |
| 348 | if [ -d assemble ] |
| 349 | then |
| 350 | /bin/rm -r assemble |
| 351 | fi |
| 352 | /bin/mkdir assemble |
Stephan Herrmann | c6c07eb | 2017-01-01 20:50:11 +0100 | [diff] [blame] | 353 | giturl=file://localhost/gitroot/${1} |
Stephan Herrmann | 07ae09f | 2017-01-01 18:58:28 +0100 | [diff] [blame] | 354 | gitpath=${2} |
| 355 | gittag=${3} |
| 356 | group=${4} |
| 357 | artifact=${5} |
| 358 | version=${6} |
| 359 | git archive --remote=${giturl} \ |
| 360 | ${gittag} ${gitpath} \ |
| 361 | | tar xv |
| 362 | /bin/mv ${gitpath}/src/* assemble/ |
| 363 | /bin/mv ${gitpath}/META-INF assemble/ |
| 364 | if [ -d ${gitpath}/OSGI-INF ] |
| 365 | then |
| 366 | /bin/mv ${gitpath}/OSGI-INF assemble/ |
| 367 | fi |
| 368 | /bin/mv ${gitpath}/about.html assemble/ |
Stephan Herrmann | c6c07eb | 2017-01-01 20:50:11 +0100 | [diff] [blame] | 369 | if [ $# > 6 ] |
| 370 | then |
| 371 | shift 6 |
| 372 | for src in "$@" |
| 373 | do |
| 374 | /bin/mv "${gitpath}/${src}" assemble/ |
| 375 | done |
| 376 | fi |
Stephan Herrmann | 07ae09f | 2017-01-01 18:58:28 +0100 | [diff] [blame] | 377 | /bin/rm -rf ${gitpath} |
| 378 | cd assemble |
| 379 | jar cf ../${group}/${artifact}/${version}/${artifact}-${version}-sources.jar * |
| 380 | cd - |
| 381 | } |
| 382 | |
Stephan Herrmann | c6c07eb | 2017-01-01 20:50:11 +0100 | [diff] [blame] | 383 | buildSourceJar platform/eclipse.platform.team.git \ |
Stephan Herrmann | 07ae09f | 2017-01-01 18:58:28 +0100 | [diff] [blame] | 384 | bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64 \ |
| 385 | I20160329-0800 \ |
| 386 | org/eclipse/platform org.eclipse.core.net.win32.x86_64 1.1.0 |
| 387 | |
Stephan Herrmann | c6c07eb | 2017-01-01 20:50:11 +0100 | [diff] [blame] | 388 | buildSourceJar platform/eclipse.platform.team.git \ |
Stephan Herrmann | 07ae09f | 2017-01-01 18:58:28 +0100 | [diff] [blame] | 389 | bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86 \ |
| 390 | I20160329-0800 \ |
| 391 | org/eclipse/platform org.eclipse.core.net.win32.x86 1.1.0 |
| 392 | |
Stephan Herrmann | c6c07eb | 2017-01-01 20:50:11 +0100 | [diff] [blame] | 393 | buildSourceJar platform/eclipse.platform.team.git \ |
Stephan Herrmann | 07ae09f | 2017-01-01 18:58:28 +0100 | [diff] [blame] | 394 | bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64 \ |
| 395 | I20160329-0800 \ |
| 396 | org/eclipse/platform org.eclipse.core.net.linux.x86_64 1.2.0 |
| 397 | |
Stephan Herrmann | c6c07eb | 2017-01-01 20:50:11 +0100 | [diff] [blame] | 398 | buildSourceJar platform/eclipse.platform.team.git \ |
Stephan Herrmann | 07ae09f | 2017-01-01 18:58:28 +0100 | [diff] [blame] | 399 | bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86 \ |
| 400 | I20160329-0800 \ |
| 401 | org/eclipse/platform org.eclipse.core.net.linux.x86 1.2.0 |
| 402 | |
Stephan Herrmann | c6c07eb | 2017-01-01 20:50:11 +0100 | [diff] [blame] | 403 | buildSourceJar platform/eclipse.platform.swt.git \ |
| 404 | bundles/org.eclipse.swt.tools \ |
| 405 | M20161109-0400 \ |
| 406 | org/eclipse/platform org.eclipse.swt.tools 3.105.2 \ |
| 407 | "JNI Generation" \ |
| 408 | "Mac Generation" \ |
| 409 | "Icon Exe" \ |
| 410 | "NativeStats" \ |
| 411 | "Mozilla Generation" \ |
| 412 | "JavadocBasher" |
| 413 | |
| 414 | buildSourceJar platform/eclipse.platform.releng.git \ |
| 415 | bundles/org.eclipse.releng.tools \ |
Stephan Herrmann | b4dcb1d | 2017-01-07 22:02:07 +0100 | [diff] [blame] | 416 | R4_6_2 \ |
Stephan Herrmann | c6c07eb | 2017-01-01 20:50:11 +0100 | [diff] [blame] | 417 | org/eclipse/platform org.eclipse.releng.tools 3.9.0 |
| 418 | |
| 419 | buildSourceJar platform/eclipse.platform.git \ |
| 420 | update/org.eclipse.update.core \ |
Stephan Herrmann | b4dcb1d | 2017-01-07 22:02:07 +0100 | [diff] [blame] | 421 | R4_6_2 \ |
Stephan Herrmann | c6c07eb | 2017-01-01 20:50:11 +0100 | [diff] [blame] | 422 | org/eclipse/platform org.eclipse.update.core 3.2.800 \ |
| 423 | schema |
| 424 | |
| 425 | buildSourceJar equinox/rt.equinox.framework.git \ |
| 426 | bundles/org.eclipse.osgi.compatibility.plugins \ |
| 427 | I20131023-2000 \ |
| 428 | org/eclipse/platform org.eclipse.osgi.compatibility.plugins 1.0.0 |
Stephan Herrmann | 07ae09f | 2017-01-01 18:58:28 +0100 | [diff] [blame] | 429 | |
Stephan Herrmann | b4dcb1d | 2017-01-07 22:02:07 +0100 | [diff] [blame] | 430 | buildSourceJar platform/eclipse.platform.releng.git \ |
| 431 | bundles/org.eclipse.pde.tools.versioning \ |
| 432 | I20140518-2000 \ |
| 433 | org/eclipse/pde org.eclipse.pde.tools.versioning 1.0.200 |
| 434 | |
Stephan Herrmann | ee73d53 | 2016-12-20 23:37:28 +0100 | [diff] [blame] | 435 | echo "========== Repo completed =========" |
| 436 | |
| 437 | cd ${WORKSPACE} |