This is an automated email from the git hooks/post-receive script. tmancill pushed a commit to branch master in repository libglazedlists-java.
commit 428404b4841bd61648cdd1babc779b66f7b1adc4 Author: tony mancill <[email protected]> Date: Tue Feb 9 22:05:07 2016 -0800 add build-dep on maven-repo-helper and pom file --- debian/control | 6 +- debian/glazedlists.pom.xml | 124 ++++++++++++++++++++++++++++++++++++++++ debian/libglazedlists-java.poms | 1 + debian/rules | 2 +- 4 files changed, 129 insertions(+), 4 deletions(-) diff --git a/debian/control b/debian/control index 0334b08..43c3503 100644 --- a/debian/control +++ b/debian/control @@ -2,9 +2,9 @@ Source: libglazedlists-java Section: java Priority: optional Maintainer: Debian Java Maintainers <[email protected]> -Uploaders: tony mancill <[email protected]> - , gregor herrmann <[email protected]> -Build-Depends: debhelper (>= 9), ant +Uploaders: tony mancill <[email protected]>, + gregor herrmann <[email protected]> +Build-Depends: debhelper (>= 9), ant, maven-repo-helper Build-Depends-Indep: default-jdk Standards-Version: 3.9.7 Homepage: http://sites.google.com/site/glazedlists/ diff --git a/debian/glazedlists.pom.xml b/debian/glazedlists.pom.xml new file mode 100644 index 0000000..707c20d --- /dev/null +++ b/debian/glazedlists.pom.xml @@ -0,0 +1,124 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + <modelVersion>4.0.0</modelVersion> + <groupId>net.java.dev.glazedlists</groupId> + <artifactId>glazedlists_java15</artifactId> + <version>1.9.0</version> + <packaging>jar</packaging> + <parent> + <groupId>net.java</groupId> + <artifactId>jvnet-parent</artifactId> + <version>1</version> + </parent> + + <name>Glazed Lists</name> + <description>Event-driven lists for dynamically filtered and sorted tables</description> + <url>http://www.glazedlists.com/</url> + <issueManagement> + <system>Jira</system> + <url>http://java.net/jira/browse/GLAZEDLISTS</url> + </issueManagement> + <inceptionYear>2003</inceptionYear> + <mailingLists> + <mailingList> + <name>[email protected]</name> + <post>[email protected]</post> + <archive>http://java.net/projects/glazedlists/lists/users/archive</archive> + </mailingList> + <mailingList> + <name>[email protected]</name> + <post>[email protected]</post> + <archive>http://java.net/projects/glazedlists/lists/dev/archive</archive> + </mailingList> + <mailingList> + <name>[email protected]</name> + <post>[email protected]</post> + <archive>http://java.net/projects/glazedlists/lists/issues/archive</archive> + </mailingList> + </mailingLists> + <developers> + <developer> + <id>jessewilson</id> + <name>Jesse Wilson</name> + <email>[email protected]</email> + <roles> + <role>Java developer</role> + </roles> + <timezone>PDT</timezone> + </developer> + <developer> + <id>jplemieux</id> + <name>James Lemieux</name> + <email/> + <roles> + <role>Java developer</role> + </roles> + <timezone>PDT</timezone> + </developer> + <developer> + <id>kevinmaltby</id> + <name>Kevin Maltby</name> + <email/> + <roles> + <role>Java developer</role> + </roles> + <timezone>EST</timezone> + </developer> + <developer> + <id>reden</id> + <name>Rob Eden</name> + <email/> + <roles> + <role>Java developer</role> + </roles> + <timezone/> + </developer> + <developer> + <id>brands</id> + <name>Holger Brands</name> + <email/> + <roles> + <role>Java developer</role> + </roles> + <timezone/> + </developer> + </developers> + <contributors> + <contributor> + <!--<id>ge0ffrey</id>--> + <name>Geoffrey De Smet</name> + <email>ge0ffrey.spam_AT_gmail.com</email> + <roles> + <role>Maven2izer</role> + </roles> + <timezone>+1</timezone> + </contributor> + </contributors> + <licenses> + <license> + <name>GNU Lesser General Public License</name> + <url>http://www.gnu.org/copyleft/lesser.html</url> + <distribution>repo</distribution> + </license> + <license> + <name>Mozilla Public License Version 1.1</name> + <url>http://www.mozilla.org/MPL/MPL-1.1.html</url> + <distribution>repo</distribution> + </license> + </licenses> + <scm> + <connection>scm:svn:http://svn.java.net/svn/glazedlists~svn/trunk</connection> + <developerConnection>scm:svn:https://svn.java.net/svn/glazedlists~svn/trunk</developerConnection> + <url>http://java.net/projects/glazedlists/sources/svn/show/trunk</url> + </scm> + <dependencies> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>3.8.1</version> + <scope>test</scope> + </dependency> + </dependencies> +</project> diff --git a/debian/libglazedlists-java.poms b/debian/libglazedlists-java.poms new file mode 100644 index 0000000..d5d58a6 --- /dev/null +++ b/debian/libglazedlists-java.poms @@ -0,0 +1 @@ +debian/glazedlists.pom.xml --no-parent --has-package-version diff --git a/debian/rules b/debian/rules index 855c67b..a5ad170 100755 --- a/debian/rules +++ b/debian/rules @@ -1,7 +1,7 @@ #!/usr/bin/make -f %: - dh $@ + dh $@ --with maven_repo_helper override_dh_auto_build: JAVA_HOME=/usr/lib/jvm/default-java ANT_OPTS=-Dfile.encoding=iso-8859-1 \ -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/libglazedlists-java.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

