[pkg-java] r7537 - trunk/maven-plugin-tools/debian

twerner at alioth.debian.org twerner at alioth.debian.org
Fri Dec 5 22:07:03 UTC 2008


Author: twerner
Date: 2008-12-05 22:07:03 +0000 (Fri, 05 Dec 2008)
New Revision: 7537

Modified:
   trunk/maven-plugin-tools/debian/build.xml
   trunk/maven-plugin-tools/debian/changelog
   trunk/maven-plugin-tools/debian/control
   trunk/maven-plugin-tools/debian/rules
Log:
close ITP; build beanshell tool


Modified: trunk/maven-plugin-tools/debian/build.xml
===================================================================
--- trunk/maven-plugin-tools/debian/build.xml	2008-12-05 21:49:40 UTC (rev 7536)
+++ trunk/maven-plugin-tools/debian/build.xml	2008-12-05 22:07:03 UTC (rev 7537)
@@ -9,6 +9,7 @@
 
   <target name="clean">
     <ant target="clean" antfile="${maven.build.xml}" dir="maven-plugin-tools-api"/>
+    <ant target="clean" antfile="${maven.build.xml}" dir="maven-plugin-tools-beanshell"/>
     <ant target="clean" antfile="${maven.build.xml}" dir="maven-plugin-tools-java"/>
     <ant target="clean" antfile="${maven.build.xml}" dir="maven-plugin-plugin"/>
   </target>
@@ -34,6 +35,9 @@
     <ant target="package" antfile="${maven.build.xml}" dir="maven-plugin-tools-api">
       <property name="artifactId" value="maven-plugin-tools-api"/>
     </ant>
+    <ant target="package" antfile="${maven.build.xml}" dir="maven-plugin-tools-beanshell">
+      <property name="artifactId" value="maven-plugin-tools-beanshell"/>
+    </ant>
     <ant target="package" antfile="${maven.build.xml}" dir="maven-plugin-tools-java">
       <property name="artifactId" value="maven-plugin-tools-java"/>
     </ant>
@@ -45,6 +49,7 @@
   <target name="javadoc">
     <javadoc destdir="${javadoc.dir}">
       <packageset dir="maven-plugin-tools-api/src/main/java/"/>
+      <packageset dir="maven-plugin-tools-beanshell/src/main/java/"/>
       <packageset dir="maven-plugin-tools-java/src/main/java/"/>
       <packageset dir="maven-plugin-plugin/src/main/java/"/>
     </javadoc>

Modified: trunk/maven-plugin-tools/debian/changelog
===================================================================
--- trunk/maven-plugin-tools/debian/changelog	2008-12-05 21:49:40 UTC (rev 7536)
+++ trunk/maven-plugin-tools/debian/changelog	2008-12-05 22:07:03 UTC (rev 7537)
@@ -1,6 +1,6 @@
 maven-plugin-tools (2.4.3-1) unstable; urgency=low
 
   UNRELEASED
-  * Initial release. (Closes: #xxxxxx)
+  * Initial release. (Closes: #507922)
 
  -- Torsten Werner <twerner at debian.org>  Thu, 04 Dec 2008 19:29:26 +0100

Modified: trunk/maven-plugin-tools/debian/control
===================================================================
--- trunk/maven-plugin-tools/debian/control	2008-12-05 21:49:40 UTC (rev 7536)
+++ trunk/maven-plugin-tools/debian/control	2008-12-05 22:07:03 UTC (rev 7537)
@@ -6,7 +6,7 @@
 Build-Depends: ant, debhelper (>= 5), cdbs, default-jdk, quilt,
  libmaven-plugin-tools-java, maven-ant-helper, libmodello-java,
  libmaven-reporting-impl-java, libplexus-containers-java, libgoogle-collections-java,
- libxbean-java, libqdox-java
+ libxbean-java, libqdox-java, bsh
 Standards-Version: 3.8.0
 Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/maven-plugin-tools
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/maven-plugin-tools/
@@ -15,7 +15,8 @@
 Package: libmaven-plugin-tools-java
 Architecture: all
 Depends: default-jre | java2-runtime, ${misc:Depends}, libmaven-reporting-impl-java,
- libplexus-containers-java, libgoogle-collections-java, libxbean-java, libqdox-java
+ libplexus-containers-java, libgoogle-collections-java, libxbean-java, libqdox-java,
+ bsh
 Description: Maven Plugin Tools Base POM
  Maven is a software project management and comprehension tool. Based on the
  concept of a project object model (POM), Maven can manage a project's build,

Modified: trunk/maven-plugin-tools/debian/rules
===================================================================
--- trunk/maven-plugin-tools/debian/rules	2008-12-05 21:49:40 UTC (rev 7536)
+++ trunk/maven-plugin-tools/debian/rules	2008-12-05 22:07:03 UTC (rev 7537)
@@ -9,7 +9,7 @@
 JAVA_HOME            := /usr/lib/jvm/default-java
 DEB_JARS             := maven2 plexus-container-default-1.0 plexus-utils jtidy \
   doxia-sink-api doxia-site-renderer maven-reporting-impl maven-ant-helper \
-  plexus-classworlds google-collect xbean-reflect qdox
+  plexus-classworlds google-collect xbean-reflect qdox bsh
 DEB_ANT_BUILD_TARGET := package #javadoc
 DEB_ANT_BUILDFILE    := debian/build.xml
 DEB_ANT_ARGS         := -Dversion=$(VERSION)
@@ -27,5 +27,7 @@
 	install -m644 maven-plugin-tools-api/pom.xml $(DEB_DESTDIR)$(MPT)/plugin-tools/maven-plugin-tools-api/$(VERSION)/maven-plugin-tools-api-$(VERSION).pom
 	dh_install maven-plugin-tools-java/target/*.jar $(MPT)/plugin-tools/maven-plugin-tools-java/$(VERSION)/
 	install -m644 maven-plugin-tools-java/pom.xml $(DEB_DESTDIR)$(MPT)/plugin-tools/maven-plugin-tools-java/$(VERSION)/maven-plugin-tools-java-$(VERSION).pom
+	dh_install maven-plugin-tools-beanshell/target/*.jar $(MPT)/plugin-tools/maven-plugin-tools-beanshell/$(VERSION)/
+	install -m644 maven-plugin-tools-java/pom.xml $(DEB_DESTDIR)$(MPT)/plugin-tools/maven-plugin-tools-beanshell/$(VERSION)/maven-plugin-tools-beanshell-$(VERSION).pom
 	dh_install maven-plugin-plugin/target/*.jar $(MPT)/plugins/maven-plugin-plugin/$(VERSION)/
 	install -m644 maven-plugin-tools-java/pom.xml $(DEB_DESTDIR)$(MPT)/plugins/maven-plugin-plugin/$(VERSION)/maven-plugin-plugin-$(VERSION).pom




More information about the pkg-java-commits mailing list