1 | <?xml version="1.0" encoding="UTF-8"?> |
---|
2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
---|
3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 |
---|
4 | http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
---|
5 | <modelVersion>4.0.0</modelVersion> |
---|
6 | <groupId>clarin.cmdi</groupId> |
---|
7 | <artifactId>componentRegistry.parent</artifactId> |
---|
8 | <name>componentRegistry_parent</name> |
---|
9 | <packaging>pom</packaging> |
---|
10 | <version>1.0</version> |
---|
11 | <description>Parent pom for ComponentRegistry, see www.clarin.eu/cmdi.</description> |
---|
12 | <modules> |
---|
13 | <module>ComponentRegistry</module> |
---|
14 | </modules> |
---|
15 | |
---|
16 | <scm> |
---|
17 | <developerConnection>scm:svn:http://svn.clarin.eu/ComponentRegistry/trunk</developerConnection> |
---|
18 | </scm> |
---|
19 | |
---|
20 | <properties> |
---|
21 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
---|
22 | <ComponentRegistry.version>2.0-SNAPSHOT</ComponentRegistry.version> |
---|
23 | </properties> |
---|
24 | |
---|
25 | <repositories> |
---|
26 | <repository> |
---|
27 | <id>CLARIN</id> |
---|
28 | <name>Clarin Repository</name> |
---|
29 | <url>https://nexus.clarin.eu/content/repositories/Clarin</url> |
---|
30 | </repository> |
---|
31 | </repositories> |
---|
32 | |
---|
33 | <reporting> |
---|
34 | <plugins> |
---|
35 | <plugin> |
---|
36 | <groupId>org.apache.maven.plugins</groupId> |
---|
37 | <artifactId>maven-surefire-report-plugin</artifactId> |
---|
38 | <version>2.7.2</version> |
---|
39 | <configuration> |
---|
40 | </configuration> |
---|
41 | </plugin> |
---|
42 | <plugin> |
---|
43 | <groupId>org.apache.maven.plugins</groupId> |
---|
44 | <artifactId>maven-jxr-plugin</artifactId> |
---|
45 | </plugin> |
---|
46 | <plugin> |
---|
47 | <groupId>org.apache.maven.plugins</groupId> |
---|
48 | <artifactId>maven-javadoc-plugin</artifactId> |
---|
49 | </plugin> |
---|
50 | <plugin> |
---|
51 | <groupId>org.codehaus.mojo</groupId> |
---|
52 | <artifactId>javancss-maven-plugin</artifactId> |
---|
53 | </plugin> |
---|
54 | <plugin> |
---|
55 | <groupId>org.codehaus.mojo</groupId> |
---|
56 | <artifactId>cobertura-maven-plugin</artifactId> |
---|
57 | <version>2.5.1</version> |
---|
58 | <configuration> |
---|
59 | <formats> |
---|
60 | <format>xml</format> |
---|
61 | </formats> |
---|
62 | </configuration> |
---|
63 | </plugin> |
---|
64 | </plugins> |
---|
65 | </reporting> |
---|
66 | </project> |
---|