source: vlo/tags/vlo-3.3.2-RC1/vlo-commons/pom.xml @ 6703

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

tagged vlo 3.3.2-RC1

File size: 4.2 KB
Line 
1<?xml version="1.0"?>
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    <parent>
6        <groupId>eu.clarin.cmdi</groupId>
7        <artifactId>vlo</artifactId>
8        <version>3.3.2-RC1</version>
9    </parent>
10    <groupId>eu.clarin.cmdi</groupId>
11    <artifactId>vlo-commons</artifactId>
12    <version>3.3.2-RC1</version>
13    <name>VLO Commons</name>
14    <url>http://maven.apache.org</url>
15    <properties>
16        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17       
18        <!-- default config values -->
19        <vloconfig.deleteAllFirst>true</vloconfig.deleteAllFirst>
20        <vloconfig.maxDaysInSolr>0</vloconfig.maxDaysInSolr>
21        <vloconfig.homeUrl>http://www.clarin.eu/vlo</vloconfig.homeUrl>
22        <vloconfig.helpUrl>http://www.clarin.eu/vlo</vloconfig.helpUrl>
23    </properties>
24   
25    <build>
26        <resources>
27            <resource>
28                <directory>src/main/resources</directory>
29                <filtering>true</filtering>
30            </resource>
31        </resources>
32        <testResources>
33            <testResource>
34                <directory>src/test/resources</directory>
35                <filtering>true</filtering>
36            </testResource>
37        </testResources>
38    </build>
39   
40    <!-- Build profiles prepare VloConfig.xml for different deployment enviroments -->
41    <profiles>
42        <profile>
43            <!-- For local testing, default profile -->
44            <id>local-testing</id>
45            <activation>
46                <activeByDefault>true</activeByDefault>
47            </activation>
48            <properties>
49                <vloconfig.solrUrl>http://localhost:8080/vlo-solr/core0/</vloconfig.solrUrl>
50                <vloconfig.dataRootsFile>dataroots-local.xml</vloconfig.dataRootsFile>
51            </properties>
52        </profile>
53       
54        <profile>
55            <!-- For deployment to catalog-clarin.esc.rzg.mpg.de -->
56            <id>dev-vm</id>
57            <properties>
58                <vloconfig.solrUrl>http://localhost:8080/vlo-solr/core0/</vloconfig.solrUrl>
59                <vloconfig.dataRootsFile>file:/lat/webapps/vlo/dataroots-testvm.xml</vloconfig.dataRootsFile>
60            </properties>
61        </profile>
62       
63        <profile>
64            <!-- For deployment to vlo.clarin.eu -->
65            <id>production</id>
66            <properties>
67                <vloconfig.deleteAllFirst>false</vloconfig.deleteAllFirst>
68                <vloconfig.maxDaysInSolr>7</vloconfig.maxDaysInSolr>
69                <vloconfig.solrUrl>http://localhost:8080/solr/core0/</vloconfig.solrUrl>
70                <vloconfig.homeUrl>http://vlo.clarin.eu</vloconfig.homeUrl>
71                <vloconfig.dataRootsFile>dataroots-production.xml</vloconfig.dataRootsFile>
72            </properties>
73        </profile>
74       
75        <profile>
76            <!--  For deployment to beta-vlo.clarin.eu -->
77            <id>beta</id>
78            <properties>
79                <vloconfig.deleteAllFirst>false</vloconfig.deleteAllFirst>
80                <vloconfig.maxDaysInSolr>7</vloconfig.maxDaysInSolr>
81                <vloconfig.solrUrl>http://172.17.42.1:8080/solr/core0/</vloconfig.solrUrl>
82                <vloconfig.homeUrl>http://beta-vlo.clarin.eu</vloconfig.homeUrl>
83                <vloconfig.dataRootsFile>dataroots-beta.xml</vloconfig.dataRootsFile>
84            </properties>
85        </profile>
86    </profiles>
87   
88    <dependencies>
89        <dependency>
90            <groupId>javax.servlet</groupId>
91            <artifactId>servlet-api</artifactId>
92            <version>2.5</version>
93            <scope>provided</scope>
94        </dependency>
95        <dependency>
96            <groupId>org.slf4j</groupId>
97            <artifactId>slf4j-log4j12</artifactId>
98            <version>${slf4j.version}</version>
99            <scope>test</scope>
100        </dependency>
101        <dependency>
102            <groupId>xmlunit</groupId>
103            <artifactId>xmlunit</artifactId>
104            <version>1.5</version>
105            <scope>test</scope>
106            <type>xml</type>
107            <classifier>ivy</classifier>
108        </dependency>
109    </dependencies>
110</project>
Note: See TracBrowser for help on using the repository browser.