[pkg-java] r9098 - in trunk/maven2/debian: . bash_completion.d

Ludovic Claude ludovicc-guest at alioth.debian.org
Sun Jul 12 14:45:05 UTC 2009


Author: ludovicc-guest
Date: 2009-07-12 14:45:04 +0000 (Sun, 12 Jul 2009)
New Revision: 9098

Modified:
   trunk/maven2/debian/bash_completion.d/maven2
   trunk/maven2/debian/copyright
Log:
* Update copyright
* Improve bash completion

Modified: trunk/maven2/debian/bash_completion.d/maven2
===================================================================
--- trunk/maven2/debian/bash_completion.d/maven2	2009-07-12 12:54:11 UTC (rev 9097)
+++ trunk/maven2/debian/bash_completion.d/maven2	2009-07-12 14:45:04 UTC (rev 9098)
@@ -6,6 +6,15 @@
 # Base on git completion script, Copyright (C) 2006,2007 Shawn O. Pearce <spearce at spearce.org>
 # Distributed under the GNU General Public License, version 2.0.
 
+# Customization: you can always edit this file (as root) and add or remove plugins and options in the lists defined below.
+# If you have some interesting changes, please send patches to ludovic.claude at laposte.net
+# Alternatively, you can create a file called bash_completion in your ~/.m2 directory.
+# This file can override any of the variables defined below (__mvnopts, __mvnoptsWithArg __mvnparams, __mvnpackaging, 
+# __mvnclassifiers, __mvndefault_phases, __mvnclean_phases, __mvnsite_phases, __mvncore_plugins, __mvnpackaging_plugins,
+# __mvnreporting_plugins, __mvntools_plugins, __mvnide_plugins, __mvnother_plugins, __mvncustom_plugins)
+# __mvncustom_plugins is the best variable to use to add new plugins and goals
+# 
+
 __mvnopts="--also-make --also-make-dependents --file --debug --batch-mode --lax-checksums --strict-checksums --check-plugin-updates --define 
   --errors --encrypt-master-password --encrypt-password --fail-at-end --fail-fast --fail-never --help --non-recursive --no-plugin-registry 
   --no-plugin-updates --offline --activate-profiles --projects --quiet --reactor --resume-from --settings --global-settings --update-snapshots 
@@ -54,8 +63,6 @@
 	 post-site
 	 site-deploy"
 
-__mvnphases="${__mvndefault_phases} ${__mvnclean_phases} ${__mvnsite_phases}"
-
 # core plugin targets
 __mvncore_plugins="clean:clean
 	 clean:help
@@ -284,28 +291,44 @@
 	 idea:workspace"
 
 __mvnother_plugins="
-	 plexus:app
-	 plexus:bundle-application
-	 plexus:bundle-runtime
-	 plexus:descriptor
-	 plexus:runtime
-	 plexus:service
-	 jetty:run-war
-	 jetty:run
-	 cargo:start
-	 cargo:stop
-	 dbunit:export
-	 dbunit:operation
-	 hibernate3:hbm2cfgxml
-	 hibernate3:hbm2ddl
-	 hibernate3:hbm2doc
-	 hibernate3:hbm2hbmxml
-	 hibernate3:hbm2java
-	 hibernate3:schema-export
-	 hibernate3:schema-update"
+	 plexus:app plexus:bundle-application plexus:bundle-runtime plexus:descriptor plexus:runtime plexus:service
+	 jetty:run-war jetty:run
+	 cargo:start cargo:stop
+	 dbunit:export dbunit:operation
+	 hibernate3:hbm2cfgxml hibernate3:hbm2ddl hibernate3:hbm2doc hibernate3:hbm2hbmxml hibernate3:hbm2java hibernate3:schema-export
+	   hibernate3:schema-update
+	 groovy:compile groovy:console groovy:execute groovy:generateStubs groovy:generateTestStubs groovy:help groovy:providers groovy:shell
+	   groovy:testCompile
+	 gwt:compile gwt:eclipse gwt:eclipseTest gwt:generateAsync gwt:help gwt:i18n gwt:test
+	 javacc:help javacc:javacc javacc:jjdoc javacc:jjtree javacc:jjtree-javacc javacc:jtb javacc:jtb-javacc
+	 jboss:configure jboss:deploy jboss:harddeploy jboss:start jboss:stop jboss:undeploy
+	 jboss-packaging:esb jboss-packaging:esb-exploded jboss-packaging:har jboss-packaging:har-exploded jboss-packaging:sar jboss-packaging:sar-exploded
+	   jboss-packaging:sar-inplace jboss-packaging:spring
+	 jpox:enhance jpox:schema-create jpox:schema-dbinfo jpox:schema-delete jpox:schema-info jpox:schema-validate
+	 make:autoreconf make:chmod make:chown make:compile make:configure make:help make:make-clean make:make-dist make:make-install make:test
+	   make:validate-pom
+	 nbm:autoupdate nbm:branding nbm:cluster nbm:directory nbm:jar nbm:nbm nbm:populate-repository nbm:run-ide nbm:run-platform
+	 tomcat:deploy tomcat:exploded tomcat:info tomcat:inplace tomcat:list tomcat:redeploy tomcat:resources tomcat:roles tomcat:run tomcat:run-war
+	   tomcat:sessions tomcat:start tomcat:stop tomcat:undeploy
+	 wagon:copy wagon:download wagon:download-single wagon:help wagon:list wagon:merge-maven-repos wagon:upload wagon:upload-single
+	 was6:clean was6:ejbdeploy was6:help was6:installApp was6:wsAdmin was6:wsDefaultBindings was6:wsListApps was6:wsStartApp was6:wsStartServer
+	   was6:wsStopApp was6:wsStopServer was6:wsUninstallApp
+	 weblogic:appc weblogic:clientgen weblogic:clientgen9 weblogic:deploy weblogic:jwsc weblogic:listapps weblogic:redeploy weblogic:servicegen
+	   weblogic:start weblogic:stop weblogic:undeploy weblogic:wsdlgen"
 
+__mvncustom_plugins=""
+
+### End of customizable area
+
+if [ -e ~/.m2/bash_completion ]; then
+	source ~/.m2/bash_completion
+fi
+
+__mvnphases="${__mvndefault_phases} ${__mvnclean_phases} ${__mvnsite_phases}"
+
 __mvnall_plugin_and_goals="${__mvncore_plugins} ${__mvnpackaging_plugins} ${__mvnreporting_plugins} ${__mvntools_plugins} 
-  ${__mvnide_plugins} ${__mvnother_plugins}"
+  ${__mvnide_plugins} ${__mvnother_plugins} ${__mvncustom_plugins}"
+
 __mvnplugins=$(echo ${__mvnall_plugin_and_goals} | sed -re 's/:[^ \t]+/:\n/g' | sort -u | sed 's/[\s\n]//g')
 
 __mvncomp_1 ()

Modified: trunk/maven2/debian/copyright
===================================================================
--- trunk/maven2/debian/copyright	2009-07-12 12:54:11 UTC (rev 9097)
+++ trunk/maven2/debian/copyright	2009-07-12 14:45:04 UTC (rev 9098)
@@ -1,62 +1,28 @@
-This package was debianized by Paul Cager <paul-debian at home.paulcager.org>
-on Sun, 29 Apr 2007 18:27:29 +0100
+Format-Specification: http://dep.debian.net/deps/dep5/
+Name: Maven Compiler Plugin
+Maintainer: Apache Maven team
+Source: http://maven.apache.org/
 
-The Debian packaging is Copyright (c) 2007 Paul Cager and is licensed under
-the GNU General Public License version 2. On Debian systems, the complete text
-of the GNU General Public License version 2 can be found in
-'/usr/share/common-licenses/GPL-2'.
+Files: *
+Copyright: 2001-2009, The Apache Software Foundation.
+License: Apache-2.0
 
-It was downloaded from:
-    http://maven.apache.org
+Files: debian/bash_completion.d/maven2
+Copyright: 2006-2007, Shawn O. Pearce <spearce at spearce.org>
+Copyright: 2009, Ludovic Claude <ludovic.claude at laposte.net>
+License: GPL-2
 
-Upstream authors:
-    Antoine Levy-Lambert <levylambert at tiscali-dsl.de>
-    Arnout J. Kuiper
-    Brett Porter <brett at apache.org>
-    Bruce Atherton <bruce at callenish.com>
-    Carlos Sanchez <carlos at apache.org>
-    Christoph.Reck <Christoph.Reck at dlr.de>
-    costin at dnt.ro
-    Daniel Rall <dlr at finemaltcoding.com>
-    Emmanuel Venisse <evenisse at apache.org>
-    gg at grtmail.com
-    Jason van Zyl <jason at maven.org> <jason at plexus.org> <jason at zenplex.com>
-    jdcasey
-    Jeff Turner <jefft at codehaus.org>
-    John Casey
-    Kenney Westerhof <kenney at apache.org>
-    Kevin A. Burton <burton at relativity.yi.org>
-    Magesh Umasankar
-    Michal Maczka <michal at codehaus.org> <michal.maczka at dimatics.com> <mmaczka at interia.pl>
-    Patrick Schneider <pschneider at gmail.com>
-    Peter Donald <peter at codehaus.org>
-    Ralph Goers <rgoers at apache.org>
-    Scott Sanders <sanders at codehaus.org>
-    Stefano Mazzocchi <stefano at apache.org>
-    Trygve Laugstol <trygvis at inamo.no>
-    Vincent Siveton <vincent.siveton at gmail.com>
+Files: debian/*
+Copyright: 2007, Paul Cager <paul-debian at home.paulcager.org>
+Copyright: 2009, Ludovic Claude <ludovic.claude at laposte.net>
+License: GPL-2
 
-Copyright:
-    Copyright (c) 2001-2007 Apache Software Foundation.
+License: Apache-2.0
+  On Debian GNU/Linux system you can find the complete text of the
+  Apache 2.0 license in '/usr/share/common-licenses/Apache-2.0'.
 
-License:
+License: GPL-2
+  On Debian GNU/Linux system you can find the complete text of the
+  GNU General Public License version 2 license in 
+  '/usr/share/common-licenses/GPL-2'.
 
-    Licensed to the Apache Software Foundation (ASF) under one
-    or more contributor license agreements.  See the NOTICE file
-    distributed with this work for additional information
-    regarding copyright ownership.  The ASF licenses this file
-    to you under the Apache License, Version 2.0 (the
-    "License"); you may not use this file except in compliance
-    with the License.  You may obtain a copy of the License at
-    
-     http://www.apache.org/licenses/LICENSE-2.0
-    
-    Unless required by applicable law or agreed to in writing,
-    software distributed under the License is distributed on an
-    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-    KIND, either express or implied.  See the License for the
-    specific language governing permissions and limitations
-    under the License.
-
-On Debian systems, the complete text of the Apache License
-version 2.0 can be found in /usr/share/common-licenses/Apache-2.0




More information about the pkg-java-commits mailing list