[pkg-java] r16699 - in trunk/xml-maven-plugin/debian: . patches

Eugene Zhukov eugene-guest at alioth.debian.org
Mon May 20 13:08:56 UTC 2013


Author: eugene-guest
Date: 2013-05-20 13:08:55 +0000 (Mon, 20 May 2013)
New Revision: 16699

Added:
   trunk/xml-maven-plugin/debian/libxml-maven-plugin-java.install
Modified:
   trunk/xml-maven-plugin/debian/control
   trunk/xml-maven-plugin/debian/patches/pom_fixes.patch
Log:
fixed jar installation

Modified: trunk/xml-maven-plugin/debian/control
===================================================================
--- trunk/xml-maven-plugin/debian/control	2013-05-18 18:04:34 UTC (rev 16698)
+++ trunk/xml-maven-plugin/debian/control	2013-05-20 13:08:55 UTC (rev 16699)
@@ -19,4 +19,8 @@
 Description: Maven XML Plugin
  A plugin for various XML related tasks like validation, transformation,
  and the like.
-
+ The plugin offers the following goals:
+  * xml:validate validates XML files against a schema.
+    If the files aren't matching a certain schema, one may simply check,
+    whether they are well formed.
+  * xml:transform transforms XML files by applying XSLT stylesheets.

Added: trunk/xml-maven-plugin/debian/libxml-maven-plugin-java.install
===================================================================
--- trunk/xml-maven-plugin/debian/libxml-maven-plugin-java.install	                        (rev 0)
+++ trunk/xml-maven-plugin/debian/libxml-maven-plugin-java.install	2013-05-20 13:08:55 UTC (rev 16699)
@@ -0,0 +1 @@
+target/xml-maven-plugin-1.0.jar usr/share/java

Modified: trunk/xml-maven-plugin/debian/patches/pom_fixes.patch
===================================================================
--- trunk/xml-maven-plugin/debian/patches/pom_fixes.patch	2013-05-18 18:04:34 UTC (rev 16698)
+++ trunk/xml-maven-plugin/debian/patches/pom_fixes.patch	2013-05-20 13:08:55 UTC (rev 16699)
@@ -1,10 +1,11 @@
 Description: fixed deps
-   * fixed dependencies according to debian local maven repo
+ * fixed dependencies according to debian local maven repo
+ * maven-jar-plugin added for Class-Path in metainf
 Author: Eugene Zhukov <jevgeni.zh at gmail.com>
-Last-Update: <2013-05-03>
+Last-Update: <2013-05-20>
 
---- a/pom.xml
-+++ b/pom.xml
+--- xml-maven-plugin-1.0.orig/pom.xml
++++ xml-maven-plugin-1.0/pom.xml
 @@ -145,15 +145,15 @@
        </exclusions>
      </dependency>
@@ -25,8 +26,22 @@
        <scope>test</scope>
      </dependency>
      <dependency>
-@@ -169,6 +169,7 @@
+@@ -167,8 +167,21 @@
+   <build>
+     <plugins>
        <plugin>
++	<groupId>org.apache.maven.plugins</groupId>
++	<artifactId>maven-jar-plugin</artifactId>
++	<configuration>
++	<archive>
++	<manifest>
++	<addClasspath>true</addClasspath>
++	</manifest>
++	</archive>
++	</configuration>
++	<version>2.2</version>
++      </plugin>
++      <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-invoker-plugin</artifactId>
 +	<version>1.5</version>




More information about the pkg-java-commits mailing list