source: CQPWebservice/pom.xml @ 2198

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

updated dependencies

File size: 3.4 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
5    <groupId>de.tuebingen.uni.sfs</groupId>
6    <version>1.0-SNAPSHOT</version>
7    <packaging>war</packaging>
8
9    <name>CQP Webservice</name>
10
11    <properties>
12        <endorsed.dir>${project.build.directory}/endorsed</endorsed.dir>
13        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14    </properties>
15
16    <dependencies>
17        <dependency>
18            <groupId>eu.clarin.cqi</groupId>
19            <artifactId>cqi-client</artifactId>
20            <version>1.0-SNAPSHOT</version>
21        </dependency>
22        <dependency>
23            <groupId>com.sun.jersey</groupId>
24            <artifactId>jersey-servlet</artifactId>
25            <version>1.13</version>
26        </dependency>
27        <dependency>
28            <groupId>de.tuebingen.uni.sfs.clarind.wlfxb</groupId>
29            <artifactId>wlfxb</artifactId>
30            <version>1.0</version>
31        </dependency>
32        <dependency>
33            <groupId>javax</groupId>
34            <artifactId>javaee-web-api</artifactId>
35            <version>6.0</version>
36            <scope>provided</scope>
37        </dependency>
38    </dependencies>
39
40    <build>
41        <plugins>
42            <plugin>
43                <groupId>org.apache.maven.plugins</groupId>
44                <artifactId>maven-compiler-plugin</artifactId>
45                <version>2.3.2</version>
46                <configuration>
47                    <source>1.6</source>
48                    <target>1.6</target>
49                    <compilerArguments>
50                        <endorseddirs>${endorsed.dir}</endorseddirs>
51                    </compilerArguments>
52                </configuration>
53            </plugin>
54            <plugin>
55                <groupId>org.apache.maven.plugins</groupId>
56                <artifactId>maven-war-plugin</artifactId>
57                <version>2.1.1</version>
58                <configuration>
59                    <failOnMissingWebXml>false</failOnMissingWebXml>
60                </configuration>
61            </plugin>
62            <plugin>
63                <groupId>org.apache.maven.plugins</groupId>
64                <artifactId>maven-dependency-plugin</artifactId>
65                <version>2.1</version>
66                <executions>
67                    <execution>
68                        <phase>validate</phase>
69                        <goals>
70                            <goal>copy</goal>
71                        </goals>
72                        <configuration>
73                            <outputDirectory>${endorsed.dir}</outputDirectory>
74                            <silent>true</silent>
75                            <artifactItems>
76                                <artifactItem>
77                                    <groupId>javax</groupId>
78                                    <artifactId>javaee-endorsed-api</artifactId>
79                                    <version>6.0</version>
80                                    <type>jar</type>
81                                </artifactItem>
82                            </artifactItems>
83                        </configuration>
84                    </execution>
85                </executions>
86            </plugin>
87        </plugins>
88    </build>
89    <artifactId>cqp-webservice</artifactId>
90</project>
Note: See TracBrowser for help on using the repository browser.