source: vlo/branches/vlo-3.3-oeaw/pom.xml @ 6762

Last change on this file since 6762 was 6762, checked in by davor.ostojic@oeaw.ac.at, 9 years ago

merged with trunk 3.4

File size: 2.3 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0                                                     http://maven.apache.org/xsd/maven-4.0.0.xsd">
3   
4    <modelVersion>4.0.0</modelVersion>
5    <groupId>eu.clarin.cmdi</groupId>
6    <artifactId>vlo</artifactId>
7    <name>Virtual Language Observatory</name>
8    <packaging>pom</packaging>
9   
10    <!-- When updating the version number here, also update the version number
11         in each module's pom.xml
12    -->
13    <version>3.4-SNAPSHOT</version>
14   
15    <description>Virtual Language Observatory (VLO) parent project</description>
16    <organization>
17        <name>CLARIN</name>
18        <url>http://www.clarin.eu</url>
19    </organization>
20
21    <modules>
22        <module>vlo-solr</module>
23        <module>vlo-web-app</module>
24        <module>vlo-importer</module>
25        <module>vlo-commons</module>
26        <module>vlo-distribution</module>
27                <module>vlo-vocabularies</module>
28    </modules>
29
30    <properties>
31        <solr.version>4.10.4</solr.version>
32        <slf4j.version>1.7.12</slf4j.version>
33        <saxon.version>9.5.1-8</saxon.version>
34        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
35        <netbeans.hint.license>gpl30</netbeans.hint.license>
36    </properties>
37   
38    <dependencies>
39        <dependency>
40            <groupId>org.slf4j</groupId>
41            <artifactId>slf4j-api</artifactId>
42            <version>${slf4j.version}</version>
43        </dependency>
44       
45        <dependency>
46            <groupId>junit</groupId>
47            <artifactId>junit</artifactId>
48            <version>4.12</version>
49            <scope>test</scope>
50        </dependency>
51    </dependencies>
52   
53    <reporting>
54        <plugins>
55            <plugin>
56                <groupId>org.codehaus.mojo</groupId>
57                <artifactId>javancss-maven-plugin</artifactId>
58                <version>2.1</version>
59            </plugin>
60        </plugins>
61    </reporting>
62   
63    <!-- TODO: get rid of dependency on MPI repository -->
64    <repositories>
65        <repository>
66            <id>MPI</id>
67            <name>MPI LAT Repository</name>
68            <url>http://lux15.mpi.nl/nexus/content/groups/public</url>
69        </repository>
70    </repositories>
71       
72</project>
Note: See TracBrowser for help on using the repository browser.