1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 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.3</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>
|