Use field variable with qualified field name. FIX namespace!
[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 <!-- 
19                 <dependency>
20                         <groupId>net.sourceforge.saxon</groupId>
21                         <artifactId>saxon</artifactId>
22                         <version>9.1.0.8</version>
23                 </dependency>
24                 <dependency>
25                         <groupId>net.sourceforge.saxon</groupId>
26                         <artifactId>saxon</artifactId>
27                         <version>9.1.0.8</version>
28                         <classifier>dom</classifier>
29                 </dependency>
30  -->
31         </dependencies>
32         <properties>
33                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
34         </properties>
35         <build>
36                 <pluginManagement>
37                         <plugins>
38                                 <plugin>
39                                         <groupId>org.apache.maven.plugins</groupId>
40                                         <artifactId>maven-compiler-plugin</artifactId>
41                                         <inherited>true</inherited>
42                                         <configuration>
43                                                 <source>1.6</source>
44                                                 <target>1.6</target>
45                                         </configuration>
46                                 </plugin>
47                         </plugins>
48                 </pluginManagement>
49                 <sourceDirectory>src</sourceDirectory>
50                 <!-- <testSourceDirectory>src/test/java</testSourceDirectory> <testResources> 
51                         <testResource> <directory>src/test/resources</directory> </testResource> 
52                         </testResources> -->
53                 <resources>
54                         <resource>
55                                 <directory>src</directory>
56                                 <includes>
57                                     <include>**/codetables*.xml</include>
58                     <include>**/package.html</include>
59                                 </includes>
60                         </resource>
61                 </resources>
62         </build>
63         <distributionManagement>
64                 <repository>
65                         <uniqueVersion>false</uniqueVersion>
66                         <id>id-maven-repo</id>
67                         <name>Index Data Maven Repository</name>
68                         <url>scp://maven.indexdata.com:222/var/www/maven/repository</url>
69                 </repository>
70         </distributionManagement>
71         <scm>
72                 <connection>scm:git:ssh://git.indexdata.com:222/home/git/public/marc4j</connection>
73                 <url>http://gitid.indexdata.com/?p=marc4j.git</url>
74         </scm>
75 </project>