source: CQPWebservice/pom.xml @ 2197

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

updated to jersey 1.13

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