~ubuntu-branches/ubuntu/trusty/brailleutils/trusty

« back to all changes in this revision

Viewing changes to debian/patches/add_pom_xml

  • Committer: Package Import Robot
  • Author(s): Sebastian Humenda
  • Date: 2013-08-16 20:32:14 UTC
  • Revision ID: package-import@ubuntu.com-20130816203214-pgool8x472l495vx
Tags: 1.2.1-3
* add breaks/replaces field to brailleutils (Closes: #718007)
* integrate library into the maven-repo using maven-repo-helper

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Index: brailleutils/pom.xml
 
2
===================================================================
 
3
--- /dev/null   1970-01-01 00:00:00.000000000 +0000
 
4
+++ brailleutils/pom.xml        2013-08-04 19:00:09.734692538 +0200
 
5
@@ -0,0 +1,125 @@
 
6
+<?xml version="1.0" encoding="UTF-8"?>
 
7
+<project xmlns="http://maven.apache.org/POM/4.0.0"
 
8
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 
9
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 
10
+
 
11
+  <modelVersion>4.0.0</modelVersion>
 
12
+
 
13
+  <parent>
 
14
+    <groupId>org.daisy</groupId>
 
15
+    <artifactId>daisy</artifactId>
 
16
+    <version>2</version>
 
17
+    <relativePath/>
 
18
+  </parent>
 
19
+
 
20
+  <groupId>org.daisy.libs</groupId>
 
21
+  <artifactId>brailleutils-core</artifactId>
 
22
+  <version>1.2.1</version>
 
23
+  <packaging>bundle</packaging>
 
24
+
 
25
+  <name>Braille Utils</name>
 
26
+  <description>Braille Utils is a cross platform utility package for embossing and converting PEF-files.</description>
 
27
+  <url>http://code.google.com/p/brailleutils/</url>
 
28
+
 
29
+  <licenses>
 
30
+    <license>
 
31
+      <name>GNU Lesser General Public License</name>
 
32
+      <url>http://www.gnu.org/licenses/lgpl.html</url>
 
33
+    </license>
 
34
+  </licenses>
 
35
+
 
36
+  <developers>
 
37
+    <developer>
 
38
+      <name>Joel Håkansson</name>
 
39
+      <organization>TPB - Talboks- och punktskriftsbiblioteket</organization>
 
40
+      <organizationUrl>http://www.tpb.se/</organizationUrl>
 
41
+      <roles>
 
42
+        <role>Project leader</role>
 
43
+      </roles>
 
44
+    </developer>
 
45
+    <developer>
 
46
+      <name>Magnus Karlströms</name>
 
47
+      <organization>TPB - Talboks- och punktskriftsbiblioteket</organization>
 
48
+      <organizationUrl>http://www.tpb.se/</organizationUrl>
 
49
+      <roles>
 
50
+        <role>Backup project leader</role>
 
51
+      </roles>
 
52
+    </developer>
 
53
+    <developer>
 
54
+      <name>Bert Frees</name>
 
55
+      <email>bertfrees@gmail.com</email>
 
56
+      <organization>SBS - Schweizerische Bibliothek für Blinde, Seh- und Lesebehinderte</organization>
 
57
+      <organizationUrl>http://sbs.ch/</organizationUrl>
 
58
+      <roles>
 
59
+        <role>Committer</role>
 
60
+      </roles>
 
61
+    </developer>
 
62
+  </developers>
 
63
+
 
64
+  <dependencies>
 
65
+    <dependency>
 
66
+      <groupId>com.thaiopensource</groupId>
 
67
+      <artifactId>jing</artifactId>
 
68
+      <version>20091111</version>
 
69
+    </dependency>
 
70
+    <dependency>
 
71
+      <groupId>stax</groupId>
 
72
+      <artifactId>stax-api</artifactId>
 
73
+      <version>1.0.1</version>
 
74
+    </dependency>
 
75
+    <dependency>
 
76
+      <groupId>xml-apis</groupId>
 
77
+      <artifactId>xml-apis</artifactId>
 
78
+      <version>1.3.04</version>
 
79
+    </dependency>
 
80
+  </dependencies>
 
81
+
 
82
+  <scm>
 
83
+    <connection>scm:svn:http://brailleutils.googlecode.com/svn/tags/release_1.2/src</connection>
 
84
+  </scm>
 
85
+
 
86
+  <build>
 
87
+    <sourceDirectory>${basedir}/target/sources</sourceDirectory>
 
88
+    <resources>
 
89
+      <resource>
 
90
+        <directory>${basedir}/target/sources</directory>
 
91
+        <filtering>false</filtering>
 
92
+        <includes>
 
93
+          <include>META-INF/services/*</include>
 
94
+          <include>**/*.xsl</include>
 
95
+          <include>**/*.rng</include>
 
96
+        </includes>
 
97
+      </resource>
 
98
+    </resources>
 
99
+    <plugins>
 
100
+      <plugin>
 
101
+        <artifactId>maven-scm-plugin</artifactId>
 
102
+        <version>1.7</version><!-- TODO remove when daisy-parent declares it in pluginManagement -->
 
103
+        <executions>
 
104
+          <execution>
 
105
+            <id>checkout</id>
 
106
+            <phase>generate-sources</phase>
 
107
+            <goals>
 
108
+              <goal>checkout</goal>
 
109
+            </goals>
 
110
+            <configuration>
 
111
+              <connectionType>connection</connectionType>
 
112
+              <checkoutDirectory>${basedir}/target/sources</checkoutDirectory>
 
113
+            </configuration>
 
114
+          </execution>
 
115
+        </executions>
 
116
+      </plugin>
 
117
+      <plugin>
 
118
+        <groupId>org.apache.felix</groupId>
 
119
+        <artifactId>maven-bundle-plugin</artifactId>
 
120
+        <configuration>
 
121
+          <instructions>
 
122
+            <SPI-Provider>javax.imageio.spi.ServiceRegistry</SPI-Provider>
 
123
+            <SPI-Consumer>javax.imageio.spi.ServiceRegistry#lookupProviders(java.lang.Class)</SPI-Consumer>
 
124
+          </instructions>
 
125
+        </configuration>
 
126
+      </plugin>
 
127
+    </plugins>
 
128
+  </build>
 
129
+
 
130
+</project>