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