From be81e59ec5577acee460371ed43a07e11f16e6dbbee9d2d6a4bceeb8bfce94f1 Mon Sep 17 00:00:00 2001 From: Fridrich Strba Date: Sun, 17 Nov 2019 15:45:33 +0000 Subject: [PATCH] OBS-URL: https://build.opensuse.org/package/show/Java:packages/gradle-bootstrap?expand=0&rev=1 --- .gitattributes | 23 ++ .gitignore | 1 + gpars-1.2.1.pom | 54 +++ gpars.jar | 3 + gradle-4.4.1-built.tar.xz | 3 + gradle-bootstrap.spec | 330 +++++++++++++++++ gradle-launcher.sh.in | 29 ++ gradle-man.txt | 150 ++++++++ groovy-all.pom | 763 ++++++++++++++++++++++++++++++++++++++ 9 files changed, 1356 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 gpars-1.2.1.pom create mode 100644 gpars.jar create mode 100644 gradle-4.4.1-built.tar.xz create mode 100644 gradle-bootstrap.spec create mode 100644 gradle-launcher.sh.in create mode 100644 gradle-man.txt create mode 100644 groovy-all.pom diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/gpars-1.2.1.pom b/gpars-1.2.1.pom new file mode 100644 index 0000000..41b3cad --- /dev/null +++ b/gpars-1.2.1.pom @@ -0,0 +1,54 @@ + + + 4.0.0 + org.codehaus.gpars + gpars + 1.2.1 + GPars + The Groovy and Java high-level concurrency library offering actors, dataflow, CSP, agents, parallel collections, fork/join and more + http://gpars.codehaus.org + 2009 + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + org.multiverse + multiverse-core + 0.7.0 + compile + + + org.codehaus.jcsp + jcsp + 1.1-rc5 + compile + true + + + org.codehaus.jsr166-mirror + jsr166y + 1.7.0 + compile + + + org.codehaus.groovy + groovy-all + 2.1.9 + compile + true + + + org.jboss.netty + netty + 3.2.9.Final + compile + true + + + diff --git a/gpars.jar b/gpars.jar new file mode 100644 index 0000000..5d0f649 --- /dev/null +++ b/gpars.jar @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d5f2f384c49a9e939475a9a2c3ddb66e19fc7edb037508fc2877e8005a72034 +size 633259 diff --git a/gradle-4.4.1-built.tar.xz b/gradle-4.4.1-built.tar.xz new file mode 100644 index 0000000..f93cb55 --- /dev/null +++ b/gradle-4.4.1-built.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a49a3ac2448ede96478f45660a52ee431be6f20b4985b98a755fb7a799df0ed +size 50264432 diff --git a/gradle-bootstrap.spec b/gradle-bootstrap.spec new file mode 100644 index 0000000..c820182 --- /dev/null +++ b/gradle-bootstrap.spec @@ -0,0 +1,330 @@ +# +# spec file for package gradle-bootstrap +# +# Copyright (c) 2019 SUSE LLC. +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + + +%global short_name gradle +%global gradle_version 4.4.1 +%global groovy_version 2.4.8 +%global gpars_version 1.2.1 +Name: %{short_name}-bootstrap +Version: %{gradle_version} +Release: 0 +Summary: Bootstrap version of Gradle build automation tool +# Some examples and integration tests are under GNU LGPL and Boost +# Software License, but are not used to create binary package. +License: Apache-2.0 +URL: https://www.gradle.org/ +# Tarball of %{_datadir}/gradle directory from our own gradle package built from sources with all the symlinks dereferenced +Source0: %{short_name}-%{gradle_version}-built.tar.xz +Source1: gradle-launcher.sh.in +Source2: gradle-man.txt +# Pom file from our own groovy package built from sources +Source100: groovy-all.pom +Source200: http://central.maven.org/maven2/org/codehaus/gpars/gpars/%{gpars_version}/gpars-%{gpars_version}.pom +# Our own built gpars.jar +Source201: gpars.jar + +BuildRequires: ant +BuildRequires: apache-commons-cli +BuildRequires: apache-commons-codec +BuildRequires: apache-commons-collections +BuildRequires: apache-commons-compress +BuildRequires: apache-commons-io +BuildRequires: apache-commons-lang +BuildRequires: apache-commons-lang3 +BuildRequires: apache-ivy +BuildRequires: aqute-bndlib +BuildRequires: asciidoc +BuildRequires: atinject +BuildRequires: aws-sdk-java-core +BuildRequires: aws-sdk-java-kms +BuildRequires: aws-sdk-java-s3 +BuildRequires: base64coder +BuildRequires: bash +BuildRequires: beust-jcommander +BuildRequires: bouncycastle +BuildRequires: bouncycastle-pg +BuildRequires: bsh2 +BuildRequires: ecj +BuildRequires: glassfish-servlet-api +BuildRequires: google-gson +BuildRequires: google-guice +BuildRequires: guava20 +BuildRequires: hawtjni-runtime +BuildRequires: httpcomponents-client +BuildRequires: httpcomponents-core +BuildRequires: jackson-annotations +BuildRequires: jackson-core +BuildRequires: jackson-databind +BuildRequires: jansi +BuildRequires: jansi-native +BuildRequires: jatl +BuildRequires: javapackages-local +BuildRequires: jcifs +BuildRequires: jcip-annotations +BuildRequires: jcl-over-slf4j +BuildRequires: jetty-server +BuildRequires: jetty-util +BuildRequires: jgit +BuildRequires: joda-time +BuildRequires: jsch +BuildRequires: jsr-305 +BuildRequires: jul-to-slf4j +BuildRequires: junit +BuildRequires: kryo +BuildRequires: log4j-over-slf4j +BuildRequires: maven-lib +BuildRequires: maven-resolver-api +BuildRequires: maven-resolver-connector-basic +BuildRequires: maven-resolver-impl +BuildRequires: maven-resolver-spi +BuildRequires: maven-resolver-transport-wagon +BuildRequires: maven-resolver-util +BuildRequires: maven-wagon-file +BuildRequires: maven-wagon-http +BuildRequires: maven-wagon-http-shared +BuildRequires: maven-wagon-provider-api +BuildRequires: minlog +BuildRequires: native-platform +BuildRequires: nekohtml +BuildRequires: objectweb-asm +BuildRequires: objenesis +BuildRequires: plexus-cipher +BuildRequires: plexus-classworlds +BuildRequires: plexus-containers-component-annotations +BuildRequires: plexus-interpolation +BuildRequires: plexus-sec-dispatcher +BuildRequires: plexus-utils +BuildRequires: reflectasm +BuildRequires: rhino +BuildRequires: sisu-inject +BuildRequires: sisu-plexus +BuildRequires: slf4j +BuildRequires: snakeyaml +BuildRequires: tesla-polyglot-common +BuildRequires: testng +BuildRequires: xbean +BuildRequires: xerces-j2 +BuildRequires: xml-commons-apis +BuildRequires: xmlto +BuildRequires: xmvn-install +BuildRequires: xmvn-subst +BuildRequires: mvn(org.codehaus.jcsp:jcsp) +BuildRequires: mvn(org.codehaus.jsr166-mirror:extra166y) +BuildRequires: mvn(org.jboss.netty:netty:3) +BuildRequires: mvn(org.multiverse:multiverse-core) + +Requires: ant +Requires: apache-commons-cli +Requires: apache-commons-codec +Requires: apache-commons-collections +Requires: apache-commons-compress +Requires: apache-commons-io +Requires: apache-commons-lang +Requires: apache-commons-lang3 +Requires: apache-ivy +Requires: aqute-bndlib +Requires: atinject +Requires: aws-sdk-java-core +Requires: aws-sdk-java-kms +Requires: aws-sdk-java-s3 +Requires: base64coder +Requires: bash +Requires: beust-jcommander +Requires: bouncycastle +Requires: bouncycastle-pg +Requires: bsh2 +Requires: ecj +Requires: glassfish-servlet-api +Requires: google-gson +Requires: google-guice +Requires: guava20 +Requires: hawtjni-runtime +Requires: httpcomponents-client +Requires: httpcomponents-core +Requires: jackson-annotations +Requires: jackson-core +Requires: jackson-databind +Requires: jansi +Requires: jansi-native +Requires: jatl +Requires: javapackages-tools +Requires: jcifs +Requires: jcip-annotations +Requires: jcl-over-slf4j +Requires: jetty-server +Requires: jetty-util +Requires: jgit +Requires: joda-time +Requires: jsch +Requires: jsr-305 +Requires: jul-to-slf4j +Requires: junit +Requires: kryo +Requires: log4j-over-slf4j +Requires: maven-lib +Requires: maven-resolver-api +Requires: maven-resolver-connector-basic +Requires: maven-resolver-impl +Requires: maven-resolver-spi +Requires: maven-resolver-transport-wagon +Requires: maven-resolver-util +Requires: maven-wagon-file +Requires: maven-wagon-http +Requires: maven-wagon-http-shared +Requires: maven-wagon-provider-api +Requires: minlog +Requires: native-platform +Requires: nekohtml +Requires: objectweb-asm +Requires: objenesis +Requires: plexus-cipher +Requires: plexus-classworlds +Requires: plexus-containers-component-annotations +Requires: plexus-interpolation +Requires: plexus-sec-dispatcher +Requires: plexus-utils +Requires: reflectasm +Requires: rhino +Requires: sisu-inject +Requires: sisu-plexus +Requires: slf4j +Requires: snakeyaml +Requires: tesla-polyglot-common +Requires: testng +Requires: xbean +Requires: xerces-j2 +Requires: xml-commons-apis +Requires: mvn(org.codehaus.groovy:groovy-all) +Recommends: java-devel +Provides: %{short_name} = %{gradle_version} + +%description +Gradle is build automation evolved. Gradle can automate the building, +testing, publishing, deployment and more of software packages or other +types of projects such as generated static websites, generated +documentation or indeed anything else. + +Gradle combines the power and flexibility of Ant with the dependency +management and conventions of Maven into a more effective way to +build. Powered by a Groovy DSL and packed with innovation, Gradle +provides a declarative way to describe all kinds of builds through +sensible defaults. Gradle is quickly becoming the build system of +choice for many open source projects, leading edge enterprises and +legacy automation challenges. + +This package is useful only for bootstrapping a repository that does +not have yet gradle, groovy and gpars built. + +%package -n groovy-bootstrap +Version: %{groovy_version} +Release: 0 +Summary: Bootstrap version of groovy-all JAR +License: Apache-2.0 +BuildArch: noarch + +%description -n groovy-bootstrap +Bootstrap version of the groovy-all.jar needed by xmvn-connector-gradle + +This package is useful only for bootstrapping a repository that does +not have yet gradle, groovy and gpars built. + + +%package -n gpars-bootstrap +Version: %{gpars_version} +Release: 0 +Summary: Bootstrap version of Groovy Parallel Systems +License: Apache-2.0 AND SUSE-Public-Domain +BuildArch: noarch + +%description -n gpars-bootstrap +The GPars framework offers Java developers intuitive and safe ways to +handle Java or Groovy tasks concurrently. Leveraging the enormous +flexibility of the Groovy programming language and building on proven +Java technologies, we aim to make concurrent programming for +multi-core hardware intuitive, robust and enjoyable. + +GPars is a multi-paradigm concurrency framework, offering several +mutually cooperating high-level concurrency abstractions, such as +Dataflow operators, Promises, CSP, Actors, Asynchronous Functions, +Agents and Parallel Collections. + +This package is useful only for bootstrapping a repository that does +not have yet gradle, groovy and gpars built. + +%prep +%setup -q -c -n %{short_name}-%{gradle_version} +cp %{SOURCE200} gpars-pom.xml + +%pom_change_dep org.jboss.netty:netty:: ::3: gpars-pom.xml +%pom_change_dep :jsr166y:: :extra166y:: gpars-pom.xml + +%build +# manpage build +mkdir man +asciidoc -b docbook -d manpage -o man/%{short_name}.xml %{SOURCE2} +xmlto man man/%{short_name}.xml -o man + +%install +install -d -m 755 %{buildroot}%{_javadir}/%{short_name}/ +ln -sf %{_bindir}/%{short_name} ./bin/%{short_name} + +install -dm 0755 %{buildroot}%{_datadir}/%{short_name} +cp -r bin lib init.d %{buildroot}%{_datadir}/%{short_name} +# Launcher with dependencies needs to be in _javadir +# Dependencies of xmvn-connector-gradle need to have Maven metadata +for mod in launcher base-services core core-api resources \ + logging base-services-groovy model-core; do + %{mvn_file} ":{gradle-$mod}" %{short_name}/@1 + %{mvn_artifact} org.gradle:gradle-$mod:%{gradle_version} ./lib/gradle-$mod-%{gradle_version}.jar +done +# this one is in lib/plugins +%{mvn_file} ":{gradle-dependency-management}" %{short_name}/@1 +%{mvn_artifact} org.gradle:gradle-dependency-management:%{gradle_version} ./lib/plugins/gradle-dependency-management-%{gradle_version}.jar + +# Temporary stuff +%{mvn_package} :groovy-{*} groovy +%{mvn_file} org.codehaus.groovy:groovy-{*} groovy/groovy-@1 +%{mvn_artifact} %{SOURCE100} ./lib/groovy-all.jar + +%{mvn_package} :gpars{*} gpars +%{mvn_file} :gpars{*} gpars/gpars@1 +%{mvn_artifact} gpars-pom.xml %{SOURCE201} + +%mvn_install + +install -d -m 755 %{buildroot}%{_bindir}/ +cat %{SOURCE1} | sed "s#@BASH@#$(which bash)#g" >gradle.sh +chmod +x gradle.sh +install -p -m 755 gradle.sh %{buildroot}%{_bindir}/%{short_name} + +install -d -m 755 %{buildroot}%{_mandir}/man1/ +install -p -m 644 man/%{short_name}.1 %{buildroot}%{_mandir}/man1/%{short_name}.1 + +xmvn-subst $(find %{buildroot}%{_datadir}/%{short_name} -type f -name \*.jar) +xmvn-subst -R %{buildroot} $(find %{buildroot}%{_datadir}/%{short_name} -type f -name \*.jar) + +%files -f .mfiles +%{_bindir}/%{short_name} +%{_datadir}/%{short_name} +%{_mandir}/man1/%{short_name}.1%{?ext_man} + +%files -n groovy-bootstrap -f .mfiles-groovy + +%files -n gpars-bootstrap -f .mfiles-gpars + +%changelog diff --git a/gradle-launcher.sh.in b/gradle-launcher.sh.in new file mode 100644 index 0000000..db03102 --- /dev/null +++ b/gradle-launcher.sh.in @@ -0,0 +1,29 @@ +#!@BASH@ + +set -e +ulimit -n $(ulimit -H -n) + +# Source system prefs +if [ -f /etc/java/gradle.conf ] ; then + . /etc/java/gradle.conf +fi + +# Source user prefs +if [ -f $HOME/.gradlerc ] ; then + . $HOME/.gradlerc +fi + +. /usr/share/java-utils/java-functions +set_jvm +set_javacmd + +set_classpath gradle/gradle-launcher gradle/gradle-core-api gradle/gradle-core gradle/gradle-base-services + +# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules +function splitJvmOpts() { + JVM_OPTS=("$@") +} +eval splitJvmOpts $JAVA_OPTS $GRADLE_OPTS +JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=gradle" + +exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.launcher.GradleMain "$@" diff --git a/gradle-man.txt b/gradle-man.txt new file mode 100644 index 0000000..e7c6b1d --- /dev/null +++ b/gradle-man.txt @@ -0,0 +1,150 @@ +gradle(1) +========= +:doctype: manpage +:man source: GRADLE +:man manual: Gradle + +NAME +---- +gradle - build automation tool + +SYNOPSIS +-------- +*gradle* [option...] [task...] + +DESCRIPTION +----------- +Gradle is build automation evolved. Gradle can automate the building, +testing, publishing, deployment and more of software packages or other +types of projects such as generated static websites, generated +documentation or indeed anything else. + +Gradle combines the power and flexibility of Ant with the dependency +management and conventions of Maven into a more effective way to +build. Powered by a Groovy DSL and packed with innovation, Gradle +provides a declarative way to describe all kinds of builds through +sensible defaults. Gradle is quickly becoming the build system of +choice for many open source projects, leading edge enterprises and +legacy automation challenges. + +OPTIONS +------- +*-?, -h, --help*:: + Shows help message. + +*-a, --no-rebuild*:: + Do not rebuild project dependencies. + +*-b, --build-file*:: + Specifies the build file. + +*-c, --settings-file*:: + Specifies the settings file. + +*--configure-on-demand*:: + Only relevant projects are configured in this build run. This means faster build for large multi-project builds. [incubating] + +*--console*:: + Specifies which type of console output to generate. Values are *plain*, *auto* (default) or *rich*. + +*--continue*:: + Continues task execution after a task failure. + +*-D, --system-prop*:: + Set system property of the JVM (e.g. *-Dmyprop=myvalue*). + +*-d, --debug*:: + Log in debug mode (includes normal stacktrace). + +*--daemon*:: + Uses the Gradle daemon to run the build. Starts the daemon if not running. + +*--foreground*:: + Starts the Gradle daemon in the foreground. [incubating] + +*-g, --gradle-user-home*:: + Specifies the gradle user home directory. + +*--gui*:: + Launches the Gradle GUI. + +*-I, --init-script*:: + Specifies an initialization script. + +*-i, --info*:: + Set log level to info. + +*-m, --dry-run*:: + Runs the builds with all task actions disabled. + +*--max-workers*:: + Configure the number of concurrent workers Gradle is allowed to use. [incubating] + +*--no-color*:: + Do not use color in the console output. [deprecated - use + *--console=plain* instead] + +*--no-daemon*:: + Do not use the Gradle daemon to run the build. + +*--offline*:: + The build should operate without accessing network resources. + +*-P, --project-prop*:: + Set project property for the build script (e.g. *-Pmyprop=myvalue*). + +*-p, --project-dir*:: + Specifies the start directory for Gradle. Defaults to current directory. + +*--parallel*:: + Build projects in parallel. Gradle will attempt to determine the optimal number of executor threads to use. [incubating] + +*--parallel-threads*:: + Build projects in parallel, using the specified number of executor + threads. [deprecated - Please use *--parallel*, optionally in + conjunction with *--max-workers*.] [incubating] + +*--profile*:: + Profiles build execution time and generates a report in the + */reports/profile* directory. + +*--project-cache-dir*:: + Specifies the project-specific cache directory. Defaults to + *.gradle* in the root project directory. + +*-q, --quiet*:: + Log errors only. + +*--recompile-scripts*:: + Force build script recompiling. + +*--refresh-dependencies*:: + Refresh the state of dependencies. + +*--rerun-tasks*:: + Ignore previously cached task results. + +*-S, --full-stacktrace*:: + Print out the full (very verbose) stacktrace for all exceptions. + +*-s, --stacktrace*:: + Print out the stacktrace for all exceptions. + +*--stop*:: + Stops the Gradle daemon if it is running. + +*-t, --continuous*:: + Enables continuous build. Gradle does not exit and will re-execute tasks when task file inputs change. [incubating] + +*-u, --no-search-upward*:: + Don't search in parent folders for a *settings.gradle* file. + +*-v, --version*:: + Print version info. + +*-x, --exclude-task*:: + Specify a task to be excluded from execution. + +SEE ALSO +-------- +Official documentation: http://gradle.org/documentation/ diff --git a/groovy-all.pom b/groovy-all.pom new file mode 100644 index 0000000..1f7135f --- /dev/null +++ b/groovy-all.pom @@ -0,0 +1,763 @@ + + + 4.0.0 + org.codehaus.groovy + groovy-all + 2.4.8 + jar + Apache Groovy + Groovy: A powerful, dynamic language for the JVM + http://groovy-lang.org + 2003 + + Apache Software Foundation + http://groovy-lang.org + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + Groovy Developer List + http://mail-archives.apache.org/mod_mbox/groovy-dev/ + + + Groovy User List + http://mail-archives.apache.org/mod_mbox/groovy-users/ + + + + + glaforge + Guillaume Laforge + org.apache.maven.model.Organization@239556d2 + + Project Manager + Despot + Developer + + + + bob + bob mcwhirter + bob@werken.com + org.apache.maven.model.Organization@4e6ce75d + + Founder + + + + jstrachan + James Strachan + james@coredevelopers.com + org.apache.maven.model.Organization@4fe62df6 + + Founder + + + + joe + Joe Walnes + org.apache.maven.model.Organization@de11305 + + Developer Emeritus + + + + skizz + Chris Stevenson + org.apache.maven.model.Organization@537b56c0 + + Developer Emeritus + + + + jamiemc + Jamie McCrindle + org.apache.maven.model.Organization@b90883 + + Developer Emeritus + + + + mattf + Matt Foemmel + org.apache.maven.model.Organization@4606b967 + + Developer Emeritus + + + + alextkachman + Alex Tkachman + + Developer Emeritus + + + + roshandawrani + Roshan Dawrani + + Developer Emeritus + + + + spullara + Sam Pullara + sam@sampullara.com + + Developer Emeritus + + + + kasper + Kasper Nielsen + + Developer Emeritus + + + + travis + Travis Kay + + Developer Emeritus + + + + zohar + Zohar Melamed + + Developer Emeritus + + + + jwilson + John Wilson + tug@wilson.co.uk + org.apache.maven.model.Organization@6a83e630 + + Developer Emeritus + + + + cpoirier + Chris Poirier + cpoirier@dreaming.org + + Developer Emeritus + + + + ckl + Christiaan ten Klooster + ckl@dacelo.nl + org.apache.maven.model.Organization@6323304f + + Developer Emeritus + + + + goetze + Steve Goetze + goetze@dovetail.com + org.apache.maven.model.Organization@5905025 + + Developer Emeritus + + + + bran + Bing Ran + b55r@sina.com + org.apache.maven.model.Organization@2903fbf0 + + Developer Emeritus + + + + jez + Jeremy Rayner + jeremy.rayner@gmail.com + org.apache.maven.model.Organization@1f0323f2 + + Developer Emeritus + + + + jstump + John Stump + johnstump2@yahoo.com + + Developer Emeritus + + + + blackdrag + Jochen Theodorou + blackdrag@gmx.org + + Developer + Despot + + + + russel + Russel Winder + russel@russel.org.uk + org.apache.maven.model.Organization@e16b27c + + Developer + Founder of Gant + + + + phk + Pilho Kim + phkim@cluecom.co.kr + + Developer Emeritus + + + + cstein + Christian Stein + sormuras@gmx.de + org.apache.maven.model.Organization@5aa9f2d + + Developer Emeritus + + + + mittie + Dierk Koenig + dierk.koenig@canoo.com + org.apache.maven.model.Organization@655941d0 + + Developer + + + + paulk + Paul King + paulk@asert.com.au + org.apache.maven.model.Organization@25ff91b5 + + Developer + Despot + + + + galleon + Guillaume Alleon + guillaume.alleon@gmail.com + + Developer Emeritus + + + + user57 + Jason Dillon + jason@planet57.com + + Developer Emeritus + + + + shemnon + Danno Ferrin + + Developer Emeritus + + + + jwill + James Williams + + Developer Emeritus + + + + timyates + Tim Yates + + Developer + + + + aalmiray + Andres Almiray + aalmiray@users.sourceforge.net + + Developer + + + + mguillem + Marc Guillemot + mguillemot@yahoo.fr + + Developer Emeritus + + + + jimwhite + Jim White + jim@pagesmiths.com + org.apache.maven.model.Organization@7106c88b + + Developer + + + + pniederw + Peter Niederwieser + pniederw@gmail.com + + Developer Emeritus + + + + andresteingress + Andre Steingress + + Developer + + + + hamletdrc + Hamlet D'Arcy + hamletdrc@gmail.com + + Developer Emeritus + + + + melix + Cedric Champeau + cedric.champeau@gmail.com + + Developer + Despot + + + + pascalschumacher + Pascal Schumacher + + Developer + + + + + + Joern Eyrich + + + Robert Kuzelj + + + Rod Cope + + + Yuri Schimke + + + James Birchfield + + + Robert Fuller + + + Sergey Udovenko + + + Hallvard Traetteberg + + + Peter Reilly + + + Brian McCallister + + + Richard Monson-Haefel + + + Brian Larson + + + Artur Biesiadowski + abies@pg.gda.pl + + + Ivan Z. Ganza + + + Arjun Nayyar + + + Mark Chu-Carroll + + + Mark Turansky + + + Jean-Louis Berliet + + + Graham Miller + + + Marc Palmer + + + Tugdual Grall + + + Edwin Tellman + + + Evan A Slatis + + + Mike Dillon + + + Bernhard Huber + + + Marc DeXeT + + + Dejan Bosanac + dejan@nighttale.net + + + Denver Dino + + + Ted Naleid + + + Chanwit Kaewkasi + + + Brad Long + + + John Bito + + + Jim Jagielski + + + Rodolfo Velasco + + + John Hurst + + + Merlyn Albery-Speyer + + + jeremi Joslin + + + UEHARA Junji + + + NAKANO Yasuharu + + + Dinko Srkoc + + + Raffaele Cigni + + + Alberto Vilches Raton + + + Paulo Poiati + + + Alexander Klein + + + Adam Murdoch + + + David Durham + + + Daniel Henrique Alves Lima + + + John Wagenleitner + + + Colin Harrington + + + Brian Alexander + + + Jan Weitz + + + Joachim Baumann + + + David Sutherland + + + Mattias Reichel + + + David Lee + + + Sergei Egorov + + + Hein Meling + + + Michael Baehr + + + Craig Andrews + + + Peter Ledbrook + + + Thibault Kruse + + + Paolo Di Tommaso + + + Rene Scheibe + + + Matias Bjarland + + + Richard Hightower + + + Andrey Bloschetsov + + + Yu Kobayashi + + + Nick Grealy + + + Marcin Grzejszczak + + + Pap L?rinc + + + Guillaume Balaine + + + Santhosh Kumar T + + + Alan Green + + + + jira + http://issues.apache.org/jira/browse/GROOVY + + + scm:git:https://github.com/apache/groovy.git + scm:git:https://github.com/apache/groovy.git + https://github.com/apache/groovy.git + + + + org.apache.ant + ant-launcher + 1.9.4 + runtime + true + + + org.apache.ant + ant-antlr + 1.9.4 + runtime + true + + + org.apache.ant + ant-junit + 1.9.4 + runtime + + + junit + junit + + + true + + + org.apache.ant + ant + 1.9.4 + compile + true + + + bsf + bsf + 2.4.0 + compile + + + commons-logging + commons-logging + + + true + + + commons-logging + commons-logging + 1.2 + compile + true + + + com.thoughtworks.qdox + qdox + 1.12.1 + compile + true + + + jline + jline + 2.12 + compile + + + junit + junit + + + true + + + javax.servlet + jsp-api + 2.0 + provided + true + + + javax.servlet + servlet-api + 2.4 + provided + true + + + junit + junit + 4.12 + compile + true + + + com.beust + jcommander + 1.47 + compile + true + + + org.testng + testng + 6.8.13 + runtime + + + bsh + org.beanshell + + + jcommander + com.beust + + + true + + + org.fusesource.jansi + jansi + 1.11 + compile + true + + + org.codehaus.gpars + gpars + 1.2.1 + runtime + + + groovy-all + org.codehaus.groovy + + + true + + + com.thoughtworks.xstream + xstream + 1.4.7 + compile + + + junit + junit + + + xpp3_min + xpp3 + + + jmock + jmock + + + true + + + org.apache.ivy + ivy + 2.4.0 + compile + true + + + org.apache.ant + ant + 1.9.4 + compile + true + + +