debian/0000755000000000000000000000000011627477715007207 5ustar debian/maven.rules0000644000000000000000000000163011627437720011361 0ustar # Maven rules - transform Maven dependencies and plugins # Format of this file is: # [group] [artifact] [type] [version] [classifier] [scope] # where each element can be either # - the exact string, for example org.apache for the group, or 3.1 # for the version. In this case, the element is simply matched # and left as it is # - * (the star character, alone). In this case, anything will # match and be left as it is. For example, using * on the # position of the artifact field will match any artifact id # - a regular expression of the form s/match/replace/ # in this case, elements that match are transformed using # the regex rule. # All elements much match before a rule can be applied # Example rule: match jar with groupid= junit, artifactid= junit # and version starting with 3., replacing the version with 3.x # junit junit jar s/3\\..*/3.x/ org.apache.maven maven-embedder jar s/.*/debian/ * * debian/copyright0000644000000000000000000000424311333613520011121 0ustar This package was debianized by Ludovic Claude Wed Nov 26 23:26:13 UTC 2008 The Debian packaging is Copyright (c) 2008 Ludovic Claude 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'. It was downloaded from: http://maven.apache.org Upstream authors: Antoine Levy-Lambert Arnout J. Kuiper Brett Porter Bruce Atherton Carlos Sanchez Christoph.Reck costin@dnt.ro Daniel Rall Emmanuel Venisse gg@grtmail.com Jason van Zyl jdcasey Jeff Turner John Casey Kenney Westerhof Kevin A. Burton Magesh Umasankar Michal Maczka Patrick Schneider Peter Donald Ralph Goers Scott Sanders Stefano Mazzocchi Trygve Laugstol Vincent Siveton Copyright: Copyright (c) 2001-2008 Apache Software Foundation. License: Licensed 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 GNU/Linux and Ubuntu systems, the complete text of the Apache 2.0 License can be found in the /usr/share/common-licenses/Apache-2.0 file. debian/patches/0000755000000000000000000000000011627477622010633 5ustar debian/patches/01_build_fix.diff0000644000000000000000000000356611333614110013717 0ustar Index: maven-embedder-2.0.4/src/main/java/org/apache/maven/embedder/MavenEmbedder.java =================================================================== --- maven-embedder-2.0.4.orig/src/main/java/org/apache/maven/embedder/MavenEmbedder.java 2010-02-02 23:09:04.000000000 +0530 +++ maven-embedder-2.0.4/src/main/java/org/apache/maven/embedder/MavenEmbedder.java 2010-02-02 23:29:22.000000000 +0530 @@ -45,6 +45,7 @@ import org.apache.maven.project.DuplicateProjectException; import org.apache.maven.project.MavenProject; import org.apache.maven.project.MavenProjectBuilder; +import org.apache.maven.project.MissingProjectException; import org.apache.maven.project.ProjectBuildingException; import org.apache.maven.settings.MavenSettingsBuilder; import org.apache.maven.settings.RuntimeInfo; @@ -377,7 +378,7 @@ TransferListener transferListener, Properties properties, File executionRootDirectory ) - throws CycleDetectedException, LifecycleExecutionException, BuildFailureException, DuplicateProjectException + throws CycleDetectedException, LifecycleExecutionException, BuildFailureException, DuplicateProjectException, MissingProjectException { execute( Collections.singletonList( project ), goals, eventMonitor, transferListener, properties, executionRootDirectory ); } @@ -388,7 +389,7 @@ TransferListener transferListener, Properties properties, File executionRootDirectory ) - throws CycleDetectedException, LifecycleExecutionException, BuildFailureException, DuplicateProjectException + throws CycleDetectedException, LifecycleExecutionException, BuildFailureException, DuplicateProjectException, MissingProjectException { ReactorManager rm = new ReactorManager( projects ); debian/patches/series0000644000000000000000000000002211333614110012015 0ustar 01_build_fix.diff debian/maven.publishedRules0000644000000000000000000000164211627437720013224 0ustar # Maven published rules - additional rules to publish, to help # the packaging work of Debian maintainers using mh_make # Format of this file is: # [group] [artifact] [type] [version] [classifier] [scope] # where each element can be either # - the exact string, for example org.apache for the group, or 3.1 # for the version. In this case, the element is simply matched # and left as it is # - * (the star character, alone). In this case, anything will # match and be left as it is. For example, using * on the # position of the artifact field will match any artifact id # - a regular expression of the form s/match/replace/ # in this case, elements that match are transformed using # the regex rule. # All elements much match before a rule can be applied # Example rule: match jar with groupid= junit, artifactid= junit # and version starting with 3., replacing the version with 3.x # junit junit jar s/3\\..*/3.x/ debian/rules0000755000000000000000000000036011627437720010256 0ustar #!/usr/bin/make -f include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/maven.mk JAVA_HOME := /usr/lib/jvm/default-java get-orig-source: uscan --download-version $(DEB_UPSTREAM_VERSION) --force-download --rename debian/libmaven-embedder-java-doc.doc-base.api0000644000000000000000000000051711627437720016375 0ustar Document: libmaven-embedder-java Title: API Javadoc for Maven Embedder Author: Maven Embedder developers Abstract: This is the API Javadoc provided for the libmaven-embedder-java library. Section: Programming Format: HTML Index: /usr/share/doc/libmaven-embedder-java/api/index.html Files: /usr/share/doc/libmaven-embedder-java/api/* debian/orig-tar.sh0000644000000000000000000000054011333613520011242 0ustar #!/bin/sh -e TAR=../maven-embedder_$2.orig.tar.gz DIR=maven-embedder-$2 TAG=maven-embedder-$2 svn export http://svn.apache.org/repos/asf/maven/components/tags/$TAG $DIR tar -c -z -f $TAR $DIR rm -rf $DIR ../$TAG # move to directory 'tarballs' if [ -r .svn/deb-layout ]; then . .svn/deb-layout mv $TAR $origDir echo "moved $TAR to $origDir" fi debian/changelog0000644000000000000000000000315311627477544011063 0ustar maven-embedder (2.0.4-3) unstable; urgency=low * Switch to source format 3.0. * Switch to debhelper level 7. * Update Standards-Version: 3.9.1. * Use Maven to build the package. Ignore test errors. * Add a documentation package. * Add Homepage field. -- Torsten Werner Wed, 31 Aug 2011 16:03:48 +0200 maven-embedder (2.0.4-2) unstable; urgency=low [ Onkar Shinde ] * debian/control - Add build dependencies quilt, libmaven2-core-java, maven-repo-helper. - Add appropriate runtime dependencies. - Add {misc:Depends} dependency to fix lintian warning. - Change section to java. - Update standards version to 3.8.4. * debian/rules - Include quilt patch system makefile. - Add jar files necessary to build this package to DEB_JARS. - Set package name by using ant argument. - Use commands from maven-repo-helper to install jar files. - Add target to get pom files from maven repository. * debian/poms/maven-embedder.xml, debian/libmaven-embedder-java.poms - Add pom file downloaded from maven repository. * debian/patches/01_build_fix.diff, debian/patches/series - Patch to fix a compilation error. * debian/README.source - Add to comply with policy. * Closes: #543103 [ Torsten Werner ] * Change Maintainer to pkg-java-maintainers. * Remove old bzr files. * Add Vcs headers to debian/control. -- Torsten Werner Sun, 07 Feb 2010 20:48:57 +0100 maven-embedder (2.0.4-1) unstable; urgency=low * Initial release (Closes: #508525) -- Ludovic Claude Sun, 04 Jan 2009 14:07:15 +0000 debian/libmaven-embedder-java.poms0000644000000000000000000000273111627437720014363 0ustar # List of POM files for the package # Format of this file is: # [option]* # where option can be: # --ignore: ignore this POM or # --no-parent: remove the tag from the POM # --package=: an alternative package to use when installing this POM # and its artifact # --has-package-version: to indicate that the original version of the POM is the same as the upstream part # of the version for the package. # --keep-elements=: a list of XML elements to keep in the POM # during a clean operation with mh_cleanpom or mh_installpom # --artifact=: path to the build artifact associated with this POM, # it will be installed when using the command mh_install # --java-lib: install the jar into /usr/share/java to comply with Debian # packaging guidelines # --usj-name=: name to use when installing the library in /usr/share/java # --usj-version=: version to use when installing the library in /usr/share/java # --no-usj-versionless: don't install the versionless link in /usr/share/java # --dest-jar=: the destination for the real jar # it will be installed with mh_install. # --classifier=: Optional, the classifier for the jar. Empty by default. # --ignore-pom: don't install the POM with mh_install or mh_installpoms. To use with POM files that are created # temporarily for certain artifacts such as Javadoc jars. # pom.xml --has-package-version --no-parent debian/README.source0000644000000000000000000000045411627437720011361 0ustar Information about maven-embedder -------------------------------- This package was debianized using the mh_make command from the maven-debian-helper package. The build system uses Maven but prevents it from downloading anything from the Internet, making the build compliant with the Debian policy. debian/TODO0000644000000000000000000000002211627437720007661 0ustar - fix test errors debian/watch0000644000000000000000000000016411333613520010215 0ustar version=3 http://svn.apache.org/repos/asf/maven/components/tags/ \ maven-embedder-(.*)/ debian debian/orig-tar.sh debian/control0000644000000000000000000000554211627437720010610 0ustar Source: maven-embedder Section: java Priority: optional Maintainer: Debian Java Maintainers Uploaders: Ludovic Claude , Torsten Werner Build-Depends: debhelper (>= 7), cdbs, default-jdk, maven-debian-helper (>= 1.4) Build-Depends-Indep: libmaven2-core-java, default-jdk-doc, libmaven2-core-java-doc, libmaven-javadoc-plugin-java Standards-Version: 3.9.1 Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/maven-embedder Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/maven-embedder/ Homepage: http://maven.apache.org/ref/3.0.3/maven-embedder/index.html Package: libmaven-embedder-java Architecture: all Depends: ${misc:Depends}, ${maven:Depends} Recommends: ${maven:OptionalDepends} Suggests: libmaven-embedder-java-doc Description: Maven Embedder 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, reporting and documentation from a central piece of information. . Maven's primary goal is to allow a developer to comprehend the complete state of a development effort in the shortest period of time. In order to attain this goal there are several areas of concern that Maven attempts to deal with: . * Making the build process easy * Providing a uniform build system * Providing quality project information * Providing guidelines for best practices development * Allowing transparent migration to new features . This package ships a Maven Embedder which is used by the Maven CLI, by IDE integration projects like Mevenide and potentially any tool that needs to embed Maven's capabilities. You could embed Maven in a Continuous Integration application to run Maven build, an application lifecycle management (ALF) tool, or Ant tasks that utilize Maven's functionality. Package: libmaven-embedder-java-doc Architecture: all Section: doc Depends: ${misc:Depends}, ${maven:DocDepends} Recommends: ${maven:DocOptionalDepends} Suggests: libmaven-embedder-java Description: Documentation for Maven Embedder 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, reporting and documentation from a central piece of information. . Maven's primary goal is to allow a developer to comprehend the complete state of a development effort in the shortest period of time. In order to attain this goal there are several areas of concern that Maven attempts to deal with: . * Making the build process easy * Providing a uniform build system * Providing quality project information * Providing guidelines for best practices development * Allowing transparent migration to new features . This package contains the API documentation of libmaven-embedder-java. debian/maven.cleanIgnoreRules0000644000000000000000000000150111627437720013465 0ustar # Maven clean ignore rules - ignore some Maven dependencies and plugins # during the clean phase of a Maven build # Format of this file is: # [group] [artifact] [type] [version] [classifier] [scope] # where each element can be either # - the exact string, for example org.apache for the group, or 3.1 # for the version. In this case, the element is simply matched # and left as it is # - * (the star character, alone). In this case, anything will # match and be left as it is. For example, using * on the # position of the artifact field will match any artifact id # All elements much match before a rule can be applied # Example rule: match jar with groupid= junit, artifactid= junit # and version starting with 3., this dependency is then removed # from the POM before mvn clean is called # junit junit jar s/3\\..*/3.x/ debian/source/0000755000000000000000000000000011627477622010504 5ustar debian/source/format0000644000000000000000000000001411627432353011702 0ustar 3.0 (quilt) debian/compat0000644000000000000000000000000211627432353010372 0ustar 7 debian/maven.ignoreRules0000644000000000000000000000173311627437720012531 0ustar # Maven ignore rules - ignore some Maven dependencies and plugins # Format of this file is: # [group] [artifact] [type] [version] [classifier] [scope] # where each element can be either # - the exact string, for example org.apache for the group, or 3.1 # for the version. In this case, the element is simply matched # and left as it is # - * (the star character, alone). In this case, anything will # match and be left as it is. For example, using * on the # position of the artifact field will match any artifact id # All elements much match before a rule can be applied # Example rule: match jar with groupid= junit, artifactid= junit # and version starting with 3., this dependency is then removed # from the POM # junit junit jar s/3\\..*/3.x/ org.apache.maven.plugins maven-assembly-plugin * * * * org.apache.maven.plugins maven-checkstyle-plugin * * * * org.apache.maven.plugins maven-pmd-plugin * * * * org.apache.maven.plugins maven-project-info-reports-plugin * * * * debian/libmaven-embedder-java-doc.install0000644000000000000000000000007311627437720015613 0ustar target/apidocs/* usr/share/doc/libmaven-embedder-java/api debian/maven.properties0000644000000000000000000000020311627437720012416 0ustar # Include here properties to pass to Maven during the build. # For example: # maven.test.skip=true maven.test.failure.ignore=true