Author: twerner Date: 2010-05-21 08:00:58 +0000 (Fri, 21 May 2010) New Revision: 12472
Added: trunk/glassfish/debian/jms.pom Modified: trunk/glassfish/debian/changelog trunk/glassfish/debian/rules Log: * UNRELEASED * Install POM and jar for Java Messaging Service (JMS). Modified: trunk/glassfish/debian/changelog =================================================================== --- trunk/glassfish/debian/changelog 2010-05-20 19:35:08 UTC (rev 12471) +++ trunk/glassfish/debian/changelog 2010-05-21 08:00:58 UTC (rev 12472) @@ -1,3 +1,10 @@ +glassfish (1:2.1.1-b31-2) unstable; urgency=low + + * UNRELEASED + * Install POM and jar for Java Messaging Service (JMS). + + -- Torsten Werner <[email protected]> Fri, 21 May 2010 09:51:10 +0200 + glassfish (1:2.1.1-b31-1) unstable; urgency=low * New upstream release Added: trunk/glassfish/debian/jms.pom =================================================================== --- trunk/glassfish/debian/jms.pom (rev 0) +++ trunk/glassfish/debian/jms.pom 2010-05-21 08:00:58 UTC (rev 12472) @@ -0,0 +1,11 @@ +<project> + <modelVersion>4.0.0</modelVersion> + <groupId>javax.jms</groupId> + <artifactId>jms</artifactId> + <version>1.1</version> + <name>Java Message Service</name> + <description> + The Java Message Service (JMS) API is a messaging standard that allows application components based on the Java 2 Platform, Enterprise Edition (J2EE) to create, send, receive, and read messages. It enables distributed communication that is loosely coupled, reliable, and asynchronous. + </description> + <url>https://glassfish.dev.java.net</url> +</project> Modified: trunk/glassfish/debian/rules =================================================================== --- trunk/glassfish/debian/rules 2010-05-20 19:35:08 UTC (rev 12471) +++ trunk/glassfish/debian/rules 2010-05-21 08:00:58 UTC (rev 12472) @@ -52,6 +52,10 @@ mh_installjar -pglassfish-javaee debian/poms/jpa.xml \ persistence-api/build/release/persistence-api.jar \ /usr/share/java/glassfish-jpa.jar + cd jms-api/build && jar cf jms.jar javax + mh_installpom -pglassfish-javaee debian/jms.pom + mh_installjar -pglassfish-javaee debian/jms.pom \ + jms-api/build/jms.jar /usr/share/java/glassfish-jms.jar install/glassfish-activation:: mh_installpom -pglassfish-activation debian/poms/activation.xml _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits

