source: SRUCQIBridge/pom.xml @ 2179

Last change on this file since 2179 was 2179, checked in by akislev, 12 years ago

Updated to use a separately packaged CQI Client

File size: 1.9 KB
Line 
1<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3    <modelVersion>4.0.0</modelVersion>
4    <artifactId>sru-cqibridge</artifactId>
5    <version>1.0-SNAPSHOT</version>
6    <packaging>war</packaging>
7
8    <name>SRU-CQIBridge</name>
9
10    <properties>
11        <endorsed.dir>${project.build.directory}/endorsed</endorsed.dir>
12        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
13    </properties>
14
15    <dependencies>
16        <dependency>
17            <groupId>eu.clarin.sru</groupId>
18            <artifactId>sru-server</artifactId>
19            <version>0.6.0-SNAPSHOT</version>
20        </dependency>
21        <dependency>
22            <groupId>eu.clarin.cqi</groupId>
23            <artifactId>cqi-client</artifactId>
24            <version>1.0-SNAPSHOT</version>
25        </dependency>
26    </dependencies>
27
28    <build>
29        <plugins>
30            <plugin>
31                <groupId>org.apache.maven.plugins</groupId>
32                <artifactId>maven-compiler-plugin</artifactId>
33                <version>2.3.2</version>
34                <configuration>
35                    <source>1.6</source>
36                    <target>1.6</target>
37                    <compilerArguments>
38                        <endorseddirs>${endorsed.dir}</endorseddirs>
39                    </compilerArguments>
40                </configuration>
41            </plugin>
42            <plugin>
43                <groupId>org.apache.maven.plugins</groupId>
44                <artifactId>maven-war-plugin</artifactId>
45                <version>2.1.1</version>
46                <configuration>
47                    <failOnMissingWebXml>false</failOnMissingWebXml>
48                </configuration>
49            </plugin>
50        </plugins>
51    </build>
52    <groupId>eu.clarin.sru.cqibridge</groupId>
53</project>
Note: See TracBrowser for help on using the repository browser.