source: CMDIValidator/trunk/pom.xml @ 5326

Last change on this file since 5326 was 5326, checked in by Oliver Schonefeld, 10 years ago
  • re-factor project into two modules
  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/xml
File size: 2.4 KB
Line 
1<project xmlns="http://maven.apache.org/POM/4.0.0"
2    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4    <modelVersion>4.0.0</modelVersion>
5    <groupId>eu.clarin.cmdi</groupId>
6    <artifactId>cmdi-validator</artifactId>
7    <version>0.0.3-SNAPSHOT</version>
8    <packaging>pom</packaging>
9
10    <modules>
11        <module>cmdi-validator-core</module>
12        <module>cmdi-validator-tool</module>
13    </modules>
14
15    <properties>
16        <!-- project settings -->
17        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
18        <!-- plug-in settings -->
19        <maven.compiler.source>1.6</maven.compiler.source>
20        <maven.compiler.target>1.6</maven.compiler.target>
21        <!-- versions of common dependencies -->
22        <slf4j.version>1.7.7</slf4j.version>
23    </properties>
24
25    <dependencyManagement>
26        <dependencies>
27            <dependency>
28                <groupId>org.slf4j</groupId>
29                <artifactId>slf4j-api</artifactId>
30                <version>${slf4j.version}</version>
31            </dependency>
32
33            <dependency>
34                <groupId>org.slf4j</groupId>
35                <artifactId>slf4j-log4j12</artifactId>
36                <version>${slf4j.version}</version>
37            </dependency>
38        </dependencies>
39    </dependencyManagement>
40
41    <build>
42        <pluginManagement>
43            <plugins>
44                <plugin>
45                    <groupId>org.apache.maven.plugins</groupId>
46                    <artifactId>maven-compiler-plugin</artifactId>
47                    <version>2.5.1</version>
48                    <configuration>
49                        <source>${maven.compiler.source}</source>
50                        <target>${maven.compiler.target}</target>
51                    </configuration>
52                </plugin>
53
54                <plugin>
55                    <groupId>org.apache.maven.plugins</groupId>
56                    <artifactId>maven-javadoc-plugin</artifactId>
57                    <version>2.9</version>
58                </plugin>
59
60                <plugin>
61                    <groupId>org.apache.maven.plugins</groupId>
62                    <artifactId>maven-source-plugin</artifactId>
63                    <version>2.2</version>
64                </plugin>
65            </plugins>
66        </pluginManagement>
67    </build>
68</project>
Note: See TracBrowser for help on using the repository browser.