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

Last change on this file since 4680 was 4680, checked in by Twan Goosen, 10 years ago

CMDValidate version -> 1.2-SNAPSHOT

File size: 2.2 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    <groupId>clarin.cmdi</groupId>
6    <artifactId>cmd-validate</artifactId>
7    <version>1.2-SNAPSHOT</version>
8    <name>CMDValidate</name>
9    <build>
10        <plugins>
11            <plugin>
12                <groupId>org.apache.maven.plugins</groupId>
13                <artifactId>maven-compiler-plugin</artifactId>
14                <version>2.3.2</version>
15                <configuration>
16                    <source>1.6</source>
17                    <target>1.6</target>
18                </configuration>
19            </plugin>
20            <plugin>
21                <groupId>org.codehaus.mojo</groupId>
22                <artifactId>exec-maven-plugin</artifactId>
23                <version>1.2.1</version>
24                <executions>
25                    <execution>
26                        <goals>
27                            <goal>java</goal>
28                        </goals>
29                    </execution>
30                </executions>
31                <configuration>
32                    <mainClass>clarin.cmdi.schema.cmd.Validator</mainClass>
33                </configuration>
34            </plugin>
35        </plugins>
36    </build>
37    <dependencies>
38        <dependency>
39            <groupId>junit</groupId>
40            <artifactId>junit</artifactId>
41            <version>4.10</version>
42        </dependency>
43        <dependency>
44            <groupId>net.sf.saxon</groupId>
45            <artifactId>Saxon-HE</artifactId>
46            <version>9.5.1-4</version>
47        </dependency>
48        <dependency>
49            <groupId>xml-resolver</groupId>
50            <artifactId>xml-resolver</artifactId>
51            <version>1.2</version>
52            <scope>test</scope>
53        </dependency>
54    </dependencies>
55    <properties>
56        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
57    </properties>
58    <repositories>
59        <repository>
60            <id>sonatype</id>
61            <url>https://oss.sonatype.org/content/groups/public</url>
62        </repository>
63        <repository>
64            <id>cmdi.clarin.repository</id>
65            <name>Clarin Repository</name>
66            <url>http://catalog.clarin.eu/ds/nexus/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.