This is an automated email from the git hooks/post-receive script. tmancill pushed a commit to branch master in repository libjrosetta-java.
commit 1151c54aefc3a7fb9b2a7aaee8707046ed4711d7 Author: tony mancill <[email protected]> Date: Wed May 17 19:50:05 2017 -0700 add misc debian files from 1.0.4-4 not migrated by svn2git --- debian/libjrosetta-java-doc.doc-base.api | 12 ++++++++++++ debian/libjrosetta-java-doc.install | 2 ++ debian/libjrosetta-java.poms | 30 ++++++++++++++++++++++++++++++ debian/maven.cleanIgnoreRules | 17 +++++++++++++++++ debian/maven.ignoreRules | 18 ++++++++++++++++++ debian/maven.properties | 4 ++++ debian/maven.publishedRules | 19 +++++++++++++++++++ debian/maven.rules | 22 ++++++++++++++++++++++ 8 files changed, 124 insertions(+) diff --git a/debian/libjrosetta-java-doc.doc-base.api b/debian/libjrosetta-java-doc.doc-base.api new file mode 100644 index 0000000..bee407b --- /dev/null +++ b/debian/libjrosetta-java-doc.doc-base.api @@ -0,0 +1,12 @@ +Document: libjrosetta-java +Title: API Javadoc for JRosetta +Author: Artenum developers +Abstract: This is the API Javadoc provided for the + libjrosetta-java libraries. +Section: Programming + +Format: HTML +Index: /usr/share/doc/libjrosetta-java/modules/jrosetta-api/index.html +Files: /usr/share/doc/libjrosetta-java/modules/jrosetta-api/* +Index: /usr/share/doc/libjrosetta-java/modules/jrosetta-engine/index.html +Files: /usr/share/doc/libjrosetta-java/modules/jrosetta-engine/* diff --git a/debian/libjrosetta-java-doc.install b/debian/libjrosetta-java-doc.install new file mode 100644 index 0000000..b270daf --- /dev/null +++ b/debian/libjrosetta-java-doc.install @@ -0,0 +1,2 @@ +modules/jrosetta-api/target/apidocs/* usr/share/doc/libjrosetta-java/modules/jrosetta-api/ +modules/jrosetta-engine/target/apidocs/* usr/share/doc/libjrosetta-java/modules/jrosetta-engine/ diff --git a/debian/libjrosetta-java.poms b/debian/libjrosetta-java.poms new file mode 100644 index 0000000..cb52677 --- /dev/null +++ b/debian/libjrosetta-java.poms @@ -0,0 +1,30 @@ +# List of POM files for the package +# Format of this file is: +# <path to pom file> [option]* +# where option can be: +# --ignore: ignore this POM and its artifact if any +# --ignore-pom: don't install the POM. To use on POM files that are created +# temporarily for certain artifacts such as Javadoc jars. [mh_install, mh_installpoms] +# --no-parent: remove the <parent> tag from the POM +# --package=<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=<elem1,elem2>: a list of XML elements to keep in the POM +# during a clean operation with mh_cleanpom or mh_installpom +# --artifact=<path>: path to the build artifact associated with this POM, +# it will be installed when using the command mh_install. [mh_install] +# --java-lib: install the jar into /usr/share/java to comply with Debian +# packaging guidelines +# --usj-name=<name>: name to use when installing the library in /usr/share/java +# --usj-version=<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=<path>: the destination for the real jar. +# It will be installed with mh_install. [mh_install] +# --classifier=<classifier>: Optional, the classifier for the jar. Empty by default. +# --site-xml=<location>: Optional, the location for site.xml if it needs to be installed. +# Empty by default. [mh_install] +# +pom.xml --has-package-version +modules/jrosetta-api/pom.xml --has-package-version --java-lib +modules/jrosetta-engine/pom.xml --has-package-version --java-lib diff --git a/debian/maven.cleanIgnoreRules b/debian/maven.cleanIgnoreRules new file mode 100644 index 0000000..d9825b6 --- /dev/null +++ b/debian/maven.cleanIgnoreRules @@ -0,0 +1,17 @@ +# 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/ + diff --git a/debian/maven.ignoreRules b/debian/maven.ignoreRules new file mode 100644 index 0000000..0386677 --- /dev/null +++ b/debian/maven.ignoreRules @@ -0,0 +1,18 @@ +# 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.wagon wagon-webdav-jackrabbit * * * * diff --git a/debian/maven.properties b/debian/maven.properties new file mode 100644 index 0000000..7c29bd7 --- /dev/null +++ b/debian/maven.properties @@ -0,0 +1,4 @@ +# Include here properties to pass to Maven during the build. +# For example: +# maven.test.skip=true + diff --git a/debian/maven.publishedRules b/debian/maven.publishedRules new file mode 100644 index 0000000..77aa245 --- /dev/null +++ b/debian/maven.publishedRules @@ -0,0 +1,19 @@ +# 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/ + diff --git a/debian/maven.rules b/debian/maven.rules new file mode 100644 index 0000000..8a39e33 --- /dev/null +++ b/debian/maven.rules @@ -0,0 +1,22 @@ +# 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/ + +com.artenum jrosetta pom s/1\..*/1.x/ * * +com.artenum.jrosetta jrosetta-api jar s/1\..*/1.x/ * * +com.artenum.jrosetta jrosetta-engine jar s/1\..*/1.x/ * * +junit junit jar s/4\..*/4.x/ * * -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/libjrosetta-java.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

