This is an automated email from the git hooks/post-receive script. apo pushed a commit to branch master in repository objenesis.
commit 7dacbef1fb83e830a368b51f7f71b49a74aee14b Author: Markus Koschany <[email protected]> Date: Mon May 16 16:57:58 2016 +0200 Add debian/pom.xml. --- debian/pom.xml | 77 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) diff --git a/debian/pom.xml b/debian/pom.xml new file mode 100644 index 0000000..8089a3b --- /dev/null +++ b/debian/pom.xml @@ -0,0 +1,77 @@ +<?xml version="1.0" encoding="windows-1252"?> +<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> + <parent> + <groupId>org.objenesis</groupId> + <artifactId>objenesis-parent</artifactId> + <version>2.3</version> + </parent> + <artifactId>objenesis</artifactId> + + <name>Objenesis</name> + <description>A library for instantiating Java objects</description> + <url>http://objenesis.org</url> + + <build> + <plugins> + <plugin> + <groupId>com.keyboardsamurais.maven</groupId> + <artifactId>maven-timestamp-plugin</artifactId> + </plugin> + <plugin> + <groupId>com.mycila.maven-license-plugin</groupId> + <artifactId>maven-license-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-remote-resources-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + <extensions>true</extensions> + <configuration> + <instructions> + <Import-Package> + COM.jrockit.reflect;resolution:=optional, + jrockit.vm;resolution:=optional, + COM.newmonics.PercClassloader;resolution:=optional, + sun.misc;resolution:=optional, + sun.reflect;resolution:=optional + </Import-Package> + </instructions> + </configuration> + </plugin> + </plugins> + </build> + + <profiles> + <profile> + <!-- Activate to create the release bundle --> + <id>release</id> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-assembly-plugin</artifactId> + <configuration> + <attach>false</attach> + <descriptors> + <descriptor>assembly.xml</descriptor> + </descriptors> + </configuration> + <executions> + <execution> + <id>make-assembly</id> + <phase>package</phase> + <goals> + <goal>single</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + </profiles> +</project> \ No newline at end of file -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/objenesis.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

