This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository maven2.
commit 80748bae377623d21d16d5a0f16f14552af0f1af Author: Paul Cager <[email protected]> Date: Fri Jul 20 16:29:34 2007 +0000 Prototype man page. Include resources. --- debian/build.xml | 24 ++++++++++---- debian/mvn.1 | 96 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 114 insertions(+), 6 deletions(-) diff --git a/debian/build.xml b/debian/build.xml index d7c8d56..42f4185 100644 --- a/debian/build.xml +++ b/debian/build.xml @@ -33,9 +33,6 @@ <target name="package" depends="jar,javadoc"/> <property file="debian/build.properties"/> - <!-- - maven-script/maven-script-beanshell/src/main/java:maven-script/maven-script-ant/src/main/java: - --> <property name="maven.mainSourceRoots" value="maven-monitor/src/main/java:maven-core/src/main/java:maven-artifact/src/main/java:maven-error-diagnostics/src/main/java:maven-profile/src/main/java:maven-settings/src/main/java:maven-plugin-registry/src/main/java:maven-plugin-api/src/main/java:maven-artifact-manager/src/main/java:maven-project/src/main/java:bootstrap/bootstrap-mini/src/main/java:bootstrap/bootstrap-installer/src/main/java:maven-reporting/maven-reporting-api/src/main/java: [...] <property name="maven.generatedSourceRoots" value="maven-plugin-parameter-documenter/build/generated-sources:maven-repository-metadata/build/generated-sources:maven-model/build/generated-sources:maven-profile/build/generated-sources:maven-settings/build/generated-sources:maven-plugin-registry/build/generated-sources:maven-plugin-descriptor/build/generated-sources"/> <property name="maven.sourceRoots" value="${maven.mainSourceRoots}:${maven.generatedSourceRoots}"/> @@ -88,14 +85,29 @@ <target name="jar" depends="compile"> <delete file="${jar}"/> - <!-- TODO --> + <!-- TODO - Need to generate the META-INF, rather than save in debian dir --> + <mkdir dir="${build.dir}/META-INF"/> + <copy todir="${build.dir}/META-INF"> - <fileset dir="." includes="**/pom.xml"/> - <fileset dir="." includes="**/pom.properties"/> <fileset dir="debian/META-INF" /> </copy> + <copy todir="${build.dir}"> + <fileset dir="maven-artifact/src/main/resources" /> + <fileset dir="maven-reporting/maven-reporting-api/src/main/resources" /> + <fileset dir="maven-error-diagnostics/src/main/resources" /> + <fileset dir="maven-plugin-registry/src/main/resources" /> + <fileset dir="maven-profile/src/main/resources" /> + <fileset dir="maven-core/src/main/resources" /> + <fileset dir="maven-artifact-manager/src/main/resources" /> + <fileset dir="bootstrap/bootstrap-installer/src/main/resources" /> + <fileset dir="bootstrap/bootstrap-mini/src/main/resources" /> + <fileset dir="maven-settings/src/main/resources" /> + <fileset dir="maven-script/maven-script-ant/src/main/resources" /> + <fileset dir="maven-project/src/main/resources" /> + </copy> + <jar jarfile="${build.dir}/${package}${jar.suffix}" basedir="${build.dir}"/> </target> diff --git a/debian/mvn.1 b/debian/mvn.1 new file mode 100644 index 0000000..df6cc82 --- /dev/null +++ b/debian/mvn.1 @@ -0,0 +1,96 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.36. +.TH MAVEN "1" "July 2007" "Maven version: 2.0.8-SNAPSHOT" "User Commands" +.SH NAME +Maven \- manual page for Maven version: 2.0.8-SNAPSHOT +.SH DESCRIPTION +usage: mvn [options] [<goal(s)>] [<phase(s)>] +.SH OPTIONS +.TP +\fB\-q\fR,\-\-quiet +Quiet output \- only show errors +.TP +\fB\-C\fR,\-\-strict\-checksums +Fail the build if checksums don't match +.TP +\fB\-c\fR,\-\-lax\-checksums +Warn if checksums don't match +.TP +\fB\-P\fR,\-\-activate\-profiles +Comma\-delimited list of profiles to +activate +.TP +\fB\-ff\fR,\-\-fail\-fast +Stop at first failure in reactorized builds +.TP +\fB\-fae\fR,\-\-fail\-at\-end +Only fail the build afterwards; allow all +non\-impacted builds to continue +.TP +\fB\-B\fR,\-\-batch\-mode +Run in non\-interactive (batch) mode +.TP +\fB\-fn\fR,\-\-fail\-never +NEVER fail the build, regardless of project +result +.TP +\fB\-up\fR,\-\-update\-plugins +Synonym for cpu +.TP +\fB\-N\fR,\-\-non\-recursive +Do not recurse into sub\-projects +.TP +\fB\-npr\fR,\-\-no\-plugin\-registry +Don't use ~/.m2/plugin\-registry.xml for +plugin versions +.TP +\fB\-U\fR,\-\-update\-snapshots +Forces a check for updated releases and +snapshots on remote repositories +.TP +\fB\-cpu\fR,\-\-check\-plugin\-updates +Force upToDate check for any relevant +registered plugins +.TP +\fB\-npu\fR,\-\-no\-plugin\-updates +Suppress upToDate check for any relevant +registered plugins +.TP +\fB\-D\fR,\-\-define +Define a system property +.TP +\fB\-X\fR,\-\-debug +Produce execution debug output +.TP +\fB\-e\fR,\-\-errors +Produce execution error messages +.TP +\fB\-f\fR,\-\-file +Force the use of an alternate POM file. +.TP +\fB\-h\fR,\-\-help +Display help information +.TP +\fB\-o\fR,\-\-offline +Work offline +.TP +\fB\-r\fR,\-\-reactor +Execute goals for project found in the +reactor +.TP +\fB\-s\fR,\-\-settings +Alternate path for the user settings file +.TP +\fB\-v\fR,\-\-version +Display version information +.SH "SEE ALSO" +The full documentation for +.B Maven +is maintained as a Texinfo manual. If the +.B info +and +.B Maven +programs are properly installed at your site, the command +.IP +.B info Maven +.PP +should give you access to the complete manual. -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/maven2.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

