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 
<[email protected]>
 # 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 
[email protected]
+# 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 <[email protected]>
-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 <[email protected]>
+Copyright: 2009, Ludovic Claude <[email protected]>
+License: GPL-2
 
-Upstream authors:
-    Antoine Levy-Lambert <[email protected]>
-    Arnout J. Kuiper
-    Brett Porter <[email protected]>
-    Bruce Atherton <[email protected]>
-    Carlos Sanchez <[email protected]>
-    Christoph.Reck <[email protected]>
-    [email protected]
-    Daniel Rall <[email protected]>
-    Emmanuel Venisse <[email protected]>
-    [email protected]
-    Jason van Zyl <[email protected]> <[email protected]> <[email protected]>
-    jdcasey
-    Jeff Turner <[email protected]>
-    John Casey
-    Kenney Westerhof <[email protected]>
-    Kevin A. Burton <[email protected]>
-    Magesh Umasankar
-    Michal Maczka <[email protected]> <[email protected]> 
<[email protected]>
-    Patrick Schneider <[email protected]>
-    Peter Donald <[email protected]>
-    Ralph Goers <[email protected]>
-    Scott Sanders <[email protected]>
-    Stefano Mazzocchi <[email protected]>
-    Trygve Laugstol <[email protected]>
-    Vincent Siveton <[email protected]>
+Files: debian/*
+Copyright: 2007, Paul Cager <[email protected]>
+Copyright: 2009, Ludovic Claude <[email protected]>
+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


_______________________________________________
pkg-java-commits mailing list
[email protected]
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits

Reply via email to