Codebase list maven-verifier / bd1907b
* Team upload. * Switch to source format 3.0. * Update Standards-Version: 3.9.1. * Add a documentation package. Torsten Werner 12 years ago
11 changed file(s) with 151 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
0 maven-verifier (1.0-2) unstable; urgency=low
1
2 * Team upload.
3 * Switch to source format 3.0.
4 * Update Standards-Version: 3.9.1.
5 * Add a documentation package.
6
7 -- Torsten Werner <twerner@debian.org> Wed, 24 Aug 2011 23:24:19 +0200
8
09 maven-verifier (1.0-1) unstable; urgency=low
110
211 * Initial release (Closes: #540053)
22 Priority: optional
33 Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
44 Uploaders: Ludovic Claude <ludovic.claude@laposte.net>
5 Build-Depends: debhelper (>= 7), cdbs, default-jdk, maven-debian-helper
6 Build-Depends-Indep: junit
7 Standards-Version: 3.8.2
5 Build-Depends: debhelper (>= 7), cdbs, default-jdk, maven-debian-helper (>= 1.4)
6 Build-Depends-Indep: junit, default-jdk-doc, libmaven-javadoc-plugin-java
7 Standards-Version: 3.9.1
88 Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/maven-verifier
99 Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/maven-verifier/
1010 Homepage: http://maven.apache.org/shared/maven-verifier/
1313 Architecture: all
1414 Depends: ${misc:Depends}, ${maven:Depends}
1515 Recommends: ${maven:OptionalDepends}
16 Suggests: libmaven-verifier-java-doc
1617 Description: Maven Verifier Component
1718 Maven is a software project management and comprehension tool. Based on the
1819 concept of a project object model (POM), Maven can manage a project's build,
3233 Maven Verifier is a shared library for Maven and it provides a test harness
3334 for Maven integration tests.
3435
36 Package: libmaven-verifier-java-doc
37 Architecture: all
38 Section: doc
39 Depends: ${misc:Depends}, ${maven:DocDepends}
40 Recommends: ${maven:DocOptionalDepends}
41 Suggests: libmaven-verifier-java
42 Description: Documentation for Maven Verifier Component
43 Maven is a software project management and comprehension tool. Based on the
44 concept of a project object model (POM), Maven can manage a project's build,
45 reporting and documentation from a central piece of information.
46 .
47 Maven's primary goal is to allow a developer to comprehend the complete
48 state of a development effort in the shortest period of time. In order to
49 attain this goal there are several areas of concern that Maven attempts
50 to deal with:
51 .
52 * Making the build process easy
53 * Providing a uniform build system
54 * Providing quality project information
55 * Providing guidelines for best practices development
56 * Allowing transparent migration to new features
57 .
58 This package contains the API documentation of libmaven-verifier-java.
3559
0 Document: libmaven-verifier-java
1 Title: API Javadoc for Maven Verifier Component
2 Author: Maven Verifier Component developers
3 Abstract: This is the API Javadoc provided for the
4 libmaven-verifier-java library.
5 Section: Programming
6
7 Format: HTML
8 Index: /usr/share/doc/libmaven-verifier-java/api/index.html
9 Files: /usr/share/doc/libmaven-verifier-java/api/*
0 target/apidocs/* usr/share/doc/libmaven-verifier-java/api
1
0 pom.xml --no-parent
0 # List of POM files for the package
1 # Format of this file is:
2 # <path to pom file> [option]*
3 # where option can be:
4 # --ignore: ignore this POM or
5 # --no-parent: remove the <parent> tag from the POM
6 # --package=<package>: an alternative package to use when installing this POM
7 # and its artifact
8 # --has-package-version: to indicate that the original version of the POM is the same as the upstream part
9 # of the version for the package.
10 # --keep-elements=<elem1,elem2>: a list of XML elements to keep in the POM
11 # during a clean operation with mh_cleanpom or mh_installpom
12 # --artifact=<path>: path to the build artifact associated with this POM,
13 # it will be installed when using the command mh_install
14 # --java-lib: install the jar into /usr/share/java to comply with Debian
15 # packaging guidelines
16 # --usj-name=<name>: name to use when installing the library in /usr/share/java
17 # --usj-version=<version>: version to use when installing the library in /usr/share/java
18 # --no-usj-versionless: don't install the versionless link in /usr/share/java
19 # --dest-jar=<path>: the destination for the real jar
20 # it will be installed with mh_install.
21 # --classifier=<classifier>: Optional, the classifier for the jar. Empty by default.
22 # --ignore-pom: don't install the POM with mh_install or mh_installpoms. To use with POM files that are created
23 # temporarily for certain artifacts such as Javadoc jars.
24 #
25 pom.xml --no-parent --has-package-version
0 # Maven clean ignore rules - ignore some Maven dependencies and plugins
1 # during the clean phase of a Maven build
2 # Format of this file is:
3 # [group] [artifact] [type] [version] [classifier] [scope]
4 # where each element can be either
5 # - the exact string, for example org.apache for the group, or 3.1
6 # for the version. In this case, the element is simply matched
7 # and left as it is
8 # - * (the star character, alone). In this case, anything will
9 # match and be left as it is. For example, using * on the
10 # position of the artifact field will match any artifact id
11 # All elements much match before a rule can be applied
12 # Example rule: match jar with groupid= junit, artifactid= junit
13 # and version starting with 3., this dependency is then removed
14 # from the POM before mvn clean is called
15 # junit junit jar s/3\\..*/3.x/
16
0 # Maven ignore rules - ignore some Maven dependencies and plugins
1 # Format of this file is:
2 # [group] [artifact] [type] [version] [classifier] [scope]
3 # where each element can be either
4 # - the exact string, for example org.apache for the group, or 3.1
5 # for the version. In this case, the element is simply matched
6 # and left as it is
7 # - * (the star character, alone). In this case, anything will
8 # match and be left as it is. For example, using * on the
9 # position of the artifact field will match any artifact id
10 # All elements much match before a rule can be applied
11 # Example rule: match jar with groupid= junit, artifactid= junit
12 # and version starting with 3., this dependency is then removed
13 # from the POM
14 # junit junit jar s/3\\..*/3.x/
15
0 # Include here properties to pass to Maven during the build.
1 # For example:
2 # maven.test.skip=true
3
0 # Maven published rules - additional rules to publish, to help
1 # the packaging work of Debian maintainers using mh_make
2 # Format of this file is:
3 # [group] [artifact] [type] [version] [classifier] [scope]
4 # where each element can be either
5 # - the exact string, for example org.apache for the group, or 3.1
6 # for the version. In this case, the element is simply matched
7 # and left as it is
8 # - * (the star character, alone). In this case, anything will
9 # match and be left as it is. For example, using * on the
10 # position of the artifact field will match any artifact id
11 # - a regular expression of the form s/match/replace/
12 # in this case, elements that match are transformed using
13 # the regex rule.
14 # All elements much match before a rule can be applied
15 # Example rule: match jar with groupid= junit, artifactid= junit
16 # and version starting with 3., replacing the version with 3.x
17 # junit junit jar s/3\\..*/3.x/
18
0 junit junit jar s/3\..*/3.x/
0 # Maven rules - transform Maven dependencies and plugins
1 # Format of this file is:
2 # [group] [artifact] [type] [version] [classifier] [scope]
3 # where each element can be either
4 # - the exact string, for example org.apache for the group, or 3.1
5 # for the version. In this case, the element is simply matched
6 # and left as it is
7 # - * (the star character, alone). In this case, anything will
8 # match and be left as it is. For example, using * on the
9 # position of the artifact field will match any artifact id
10 # - a regular expression of the form s/match/replace/
11 # in this case, elements that match are transformed using
12 # the regex rule.
13 # All elements much match before a rule can be applied
14 # Example rule: match jar with groupid= junit, artifactid= junit
15 # and version starting with 3., replacing the version with 3.x
16 # junit junit jar s/3\\..*/3.x/
17
18 junit junit jar s/3\..*/3.x/ * *
19 org.apache.maven.shared maven-verifier jar s/.*/debian/ * *
0 3.0 (quilt)