Add gzipped test resource. Generate CodeTable instead of load XML at run time
[marc4j.git] / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3         <modelVersion>4.0.0</modelVersion>
4         <groupId>org.marc4j</groupId>
5         <artifactId>marc4j</artifactId>
6         <version>2.5-SNAPSHOT</version>
7         <dependencies>
8                 <dependency>
9                         <groupId>junit</groupId>
10                         <artifactId>junit</artifactId>
11                         <version>4.10</version>
12                 </dependency>
13                 <dependency>
14                         <groupId>com.ibm.icu.text</groupId>
15                         <artifactId>normalizer</artifactId>
16                         <version>1.3.1</version>
17                 </dependency>
18                 <dependency>
19                         <groupId>net.sourceforge.saxon</groupId>
20                         <artifactId>saxon</artifactId>
21                         <version>9.1.0.8</version>
22                 </dependency>
23                 <dependency>
24                         <groupId>net.sourceforge.saxon</groupId>
25                         <artifactId>saxon</artifactId>
26                         <version>9.1.0.8</version>
27                         <classifier>dom</classifier>
28                 </dependency>
29         </dependencies>
30         <properties>
31                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
32         </properties>
33         <build>
34                 <pluginManagement>
35                         <plugins>
36                                 <plugin>
37                                         <groupId>org.apache.maven.plugins</groupId>
38                                         <artifactId>maven-compiler-plugin</artifactId>
39                                         <inherited>true</inherited>
40                                         <configuration>
41                                                 <source>1.6</source>
42                                                 <target>1.6</target>
43                                         </configuration>
44                                 </plugin>
45                         </plugins>
46                 </pluginManagement>
47                 <sourceDirectory>src</sourceDirectory>
48                 <!-- <testSourceDirectory>src/test/java</testSourceDirectory> <testResources> 
49                         <testResource> <directory>src/test/resources</directory> </testResource> 
50                         </testResources> -->
51                 <resources>
52                         <resource>
53                                 <directory>src</directory>
54                                 <includes>
55                                     <include>**/codetables*.xml</include>
56                     <include>**/package.html</include>
57                                 </includes>
58                         </resource>
59                 </resources>
60         </build>
61         <distributionManagement>
62                 <repository>
63                         <uniqueVersion>false</uniqueVersion>
64                         <id>id-maven-repo</id>
65                         <name>Index Data Maven Repository</name>
66                         <url>scp://maven.indexdata.com:222/var/www/maven/repository</url>
67                 </repository>
68         </distributionManagement>
69         <scm>
70                 <connection>scm:git:ssh://git.indexdata.com:222/home/git/public/marc4j</connection>
71                 <url>http://gitid.indexdata.com/?p=marc4j.git</url>
72         </scm>
73 </project>