This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "GNU libidn".
http://git.savannah.gnu.org/cgit/libidn.git/commit/?id=605ac7510c676b48ac05c37008ea9d691f248309 The branch, master has been updated via 605ac7510c676b48ac05c37008ea9d691f248309 (commit) from c9f9ac510df87160b3aec9475a7f83fbc14322e3 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 605ac7510c676b48ac05c37008ea9d691f248309 Author: Simon Josefsson <[email protected]> Date: Tue Sep 22 16:45:54 2009 +0200 Add Maven pom.xml file. ----------------------------------------------------------------------- Summary of changes: configure.ac | 1 + pom.xml.in | 44 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+), 0 deletions(-) create mode 100644 pom.xml.in diff --git a/configure.ac b/configure.ac index 1051535..4953218 100644 --- a/configure.ac +++ b/configure.ac @@ -151,6 +151,7 @@ fi AC_CONFIG_FILES([ Makefile libidn.pc + pom.xml csharp/Makefile contrib/doxygen/Doxyfile doc/Makefile diff --git a/pom.xml.in b/pom.xml.in new file mode 100644 index 0000000..3080f88 --- /dev/null +++ b/pom.xml.in @@ -0,0 +1,44 @@ +<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>org.gnu.inet</groupId> + <artifactId>libidn</artifactId> + <name>GNU IDN Library</name> + <version>@VERSION@</version> + <description> + GNU Libidn is a fully documented implementation of the Stringprep, + Punycode and IDNA specifications. Libidn's purpose is to encode + and decode internationalized domain names. + </description> + <url>http://www.gnu.org/software/libidn/</url> + <inceptionYear>2002</inceptionYear> + <licenses> + <license> + <name>GNU Lesser General Public License version 2.1 or later</name> + <url>http://www.gnu.org/licenses/licenses.html</url> + <distribution>repo</distribution> + </license> + </licenses> + <scm> + <connection>scm:git:git://git.savannah.gnu.org/libidn.git</connection> + <url>http://git.savannah.gnu.org/gitweb/?p=libidn.git</url> + </scm> + <organization> + <name>GNU</name> + <url>http://www.gnu.org/</url> + </organization> + <build> + <sourceDirectory>${project.basedir}/java</sourceDirectory> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <excludes> + <exclude>misc/**</exclude> + </excludes> + <!-- put your configurations here --> + </configuration> + </plugin> + </plugins> + </build> +</project> hooks/post-receive -- GNU libidn _______________________________________________ Libidn-commit mailing list [email protected] http://lists.gnu.org/mailman/listinfo/libidn-commit
