source: ComponentRegistry/branches/ComponentRegistry-1.14/pom.xml @ 6449

Last change on this file since 6449 was 6449, checked in by Twan Goosen, 9 years ago

version number in 1.14 branch

  • Property svn:mergeinfo set to (toggle deleted branches)
    /ComponentRegistry/tags/ComponentRegistry-1.9.1/pom.xmlmergedeligible
    /ComponentRegistry/branches/ComponentRegistry-1.12.0/pom.xml2071-2124
    /ComponentRegistry/branches/ComponentRegistry-1.13.0-olha/pom.xml2143-2514
    /ComponentRegistry/branches/ComponentRegistry-1.14.0/pom.xml3885-4093
    /ComponentRegistry/branches/ComponentRegistry-schematron/pom.xml1751-1797
    /ComponentRegistry/branches/georgovassilis_workspace/pom.xml3663-4097
    /ComponentRegistry/branches/jeaferversion/pom.xml1631-1680
File size: 2.2 KB
Line 
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>ComponentBrowserGui</module>
14    <module>ComponentRegistry</module>
15  </modules>
16
17  <scm>
18     <developerConnection>scm:svn:http://svn.clarin.eu/ComponentRegistry/trunk</developerConnection>
19  </scm>
20
21  <properties>
22    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
23    <ComponentBrowserGui.version>1.14-SNAPSHOT</ComponentBrowserGui.version>
24    <ComponentRegistry.version>1.14-SNAPSHOT</ComponentRegistry.version>
25  </properties>
26 
27  <repositories>
28        <repository>
29                <id>cmdi.clarin.repository</id>
30                <name>Clarin Repository</name>
31                <url>http://catalog.clarin.eu/ds/nexus/content/groups/public/</url> 
32        </repository> 
33       
34 </repositories>
35
36  <reporting>
37    <plugins>
38      <plugin>
39        <groupId>org.apache.maven.plugins</groupId>
40        <artifactId>maven-surefire-report-plugin</artifactId>
41        <version>2.7.2</version>
42        <configuration>
43        </configuration>
44      </plugin>
45      <plugin>
46        <groupId>org.apache.maven.plugins</groupId>
47        <artifactId>maven-jxr-plugin</artifactId>
48      </plugin>
49      <plugin>
50        <groupId>org.apache.maven.plugins</groupId>
51        <artifactId>maven-javadoc-plugin</artifactId>
52      </plugin>
53      <plugin>
54        <groupId>org.codehaus.mojo</groupId>
55        <artifactId>javancss-maven-plugin</artifactId>
56      </plugin>
57          <plugin>
58                <groupId>org.codehaus.mojo</groupId>
59                <artifactId>cobertura-maven-plugin</artifactId>
60                <version>2.5.1</version>
61            <configuration>
62          <formats>
63                <format>xml</format>
64          </formats>
65                </configuration>
66          </plugin>
67    </plugins>
68  </reporting>
69</project>
Note: See TracBrowser for help on using the repository browser.