Description: add pom.xml for brailleutils-core
 Since an upstream pom.xml was missing, one was included to ease usage of this
 library by maven.
Author: Sebastian Humenda <shumenda@gmx.de>
Last-Update: <2013-08-10:31>
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
Index: brailleutils/pom.xml
===================================================================
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
+++ brailleutils/pom.xml	2013-08-04 19:00:09.734692538 +0200
@@ -0,0 +1,125 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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/xsd/maven-4.0.0.xsd">
+
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.daisy</groupId>
+    <artifactId>daisy</artifactId>
+    <version>2</version>
+    <relativePath/>
+  </parent>
+
+  <groupId>org.daisy.libs</groupId>
+  <artifactId>brailleUtils-core</artifactId>
+  <version>1.2.1</version>
+  <packaging>bundle</packaging>
+
+  <name>Braille Utils</name>
+  <description>Braille Utils is a cross platform utility package for embossing and converting PEF-files.</description>
+  <url>http://code.google.com/p/brailleutils/</url>
+
+  <licenses>
+    <license>
+      <name>GNU Lesser General Public License</name>
+      <url>http://www.gnu.org/licenses/lgpl.html</url>
+    </license>
+  </licenses>
+
+  <developers>
+    <developer>
+      <name>Joel Håkansson</name>
+      <organization>TPB - Talboks- och punktskriftsbiblioteket</organization>
+      <organizationUrl>http://www.tpb.se/</organizationUrl>
+      <roles>
+        <role>Project leader</role>
+      </roles>
+    </developer>
+    <developer>
+      <name>Magnus Karlströms</name>
+      <organization>TPB - Talboks- och punktskriftsbiblioteket</organization>
+      <organizationUrl>http://www.tpb.se/</organizationUrl>
+      <roles>
+        <role>Backup project leader</role>
+      </roles>
+    </developer>
+    <developer>
+      <name>Bert Frees</name>
+      <email>bertfrees@gmail.com</email>
+      <organization>SBS - Schweizerische Bibliothek für Blinde, Seh- und Lesebehinderte</organization>
+      <organizationUrl>http://sbs.ch/</organizationUrl>
+      <roles>
+        <role>Committer</role>
+      </roles>
+    </developer>
+  </developers>
+
+  <dependencies>
+    <dependency>
+      <groupId>com.thaiopensource</groupId>
+      <artifactId>jing</artifactId>
+      <version>20091111</version>
+    </dependency>
+    <dependency>
+      <groupId>stax</groupId>
+      <artifactId>stax-api</artifactId>
+      <version>1.0.1</version>
+    </dependency>
+    <dependency>
+      <groupId>xml-apis</groupId>
+      <artifactId>xml-apis</artifactId>
+      <version>1.3.04</version>
+    </dependency>
+  </dependencies>
+
+  <scm>
+    <connection>scm:svn:http://brailleutils.googlecode.com/svn/tags/release_1.2/src</connection>
+  </scm>
+
+  <build>
+    <sourceDirectory>${basedir}/target/sources</sourceDirectory>
+    <resources>
+      <resource>
+        <directory>${basedir}/target/sources</directory>
+        <filtering>false</filtering>
+        <includes>
+          <include>META-INF/services/*</include>
+          <include>**/*.xsl</include>
+          <include>**/*.rng</include>
+        </includes>
+      </resource>
+    </resources>
+    <plugins>
+      <plugin>
+        <artifactId>maven-scm-plugin</artifactId>
+        <version>1.7</version><!-- TODO remove when daisy-parent declares it in pluginManagement -->
+        <executions>
+          <execution>
+            <id>checkout</id>
+            <phase>generate-sources</phase>
+            <goals>
+              <goal>checkout</goal>
+            </goals>
+            <configuration>
+              <connectionType>connection</connectionType>
+              <checkoutDirectory>${basedir}/target/sources</checkoutDirectory>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <configuration>
+          <instructions>
+            <SPI-Provider>javax.imageio.spi.ServiceRegistry</SPI-Provider>
+            <SPI-Consumer>javax.imageio.spi.ServiceRegistry#lookupProviders(java.lang.Class)</SPI-Consumer>
+          </instructions>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>
