source: ComponentRegistry/trunk/CMDValidate/pom.xml @ 1859

Last change on this file since 1859 was 1859, checked in by twagoo, 12 years ago

CMDValidate:

  • now version 1.1
  • Validator takes an optional LSResourceSolver that it wall pass to SchemaFactory? so that schema catalog can be used
  • Added test resolver + catalog config to test packages
File size: 2.1 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4    <modelVersion>4.0.0</modelVersion>
5    <parent>
6        <groupId>clarin.cmdi</groupId>
7        <artifactId>componentRegistry.parent</artifactId>
8        <version>1.0</version>
9    </parent>
10    <groupId>clarin.cmdi</groupId>
11    <artifactId>cmd-validate</artifactId>
12    <version>1.1</version>
13    <name>CMDValidate</name>
14    <build>
15        <plugins>
16            <plugin>
17                <groupId>org.apache.maven.plugins</groupId>
18                <artifactId>maven-compiler-plugin</artifactId>
19                <version>2.3.2</version>
20                <configuration>
21                    <source>1.6</source>
22                    <target>1.6</target>
23                </configuration>
24            </plugin>
25            <plugin>
26                <groupId>org.codehaus.mojo</groupId>
27                <artifactId>exec-maven-plugin</artifactId>
28                <version>1.2.1</version>
29                <executions>
30                    <execution>
31                        <goals>
32                            <goal>java</goal>
33                        </goals>
34                    </execution>
35                </executions>
36                <configuration>
37                    <mainClass>clarin.cmdi.schema.cmd.Validator</mainClass>
38                </configuration>
39            </plugin>
40        </plugins>
41    </build>
42    <dependencies>
43        <dependency>
44            <groupId>junit</groupId>
45            <artifactId>junit</artifactId>
46            <version>4.10</version>
47        </dependency>
48        <dependency>
49            <groupId>net.sf.saxon</groupId>
50            <artifactId>Saxon-HE</artifactId>
51            <version>9.4</version>
52        </dependency>
53        <dependency>
54            <groupId>xml-resolver</groupId>
55            <artifactId>xml-resolver</artifactId>
56            <version>1.2</version>
57            <scope>test</scope>
58        </dependency>
59    </dependencies>
60    <properties>
61        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
62    </properties>
63    <repositories>
64        <repository>
65            <id>sonatype</id>
66            <url>https://oss.sonatype.org/content/groups/public</url>
67        </repository>
68    </repositories>
69    <distributionManagement>
70        <snapshotRepository>
71            <id>MPI-Snapshots</id>
72            <url>http://lux15.mpi.nl/nexus/content/repositories/MPI-Snapshots</url>
73        </snapshotRepository>
74    </distributionManagement>
75</project>
Note: See TracBrowser for help on using the repository browser.