source: SRUAggregator/trunk/pom.xml @ 2528

Last change on this file since 2528 was 2528, checked in by yana, 11 years ago

version bump

File size: 4.3 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    <groupId>eu.clarin.sru.fcs</groupId>
5    <artifactId>aggregator</artifactId>
6    <version>1.1</version>
7    <properties>
8        <endorsed.dir>${project.build.directory}/endorsed</endorsed.dir>
9        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
10    </properties>
11    <packaging>war</packaging>
12    <name>Aggregator</name>
13    <description>The Aggregator Project</description>
14    <organization>
15        <name>SfS Uni Tuebingen</name>
16        <url>http://www.sfs.uni-tuebingen.de/</url>
17    </organization>
18    <licenses>
19        <license>
20            <name>GNU GENERAL PUBLIC LICENSE, Version 3</name>
21            <url>http://www.gnu.org/licenses/gpl.html</url>
22            <distribution>repo</distribution>
23        </license>
24    </licenses>
25    <repositories>
26        <repository>
27            <id>clarin</id>
28            <url>http://catalog.clarin.eu/ds/nexus/content/repositories/Clarin/</url>
29        </repository>
30    </repositories>
31    <dependencies>
32        <dependency>
33            <groupId>org.zkoss.theme</groupId>
34            <artifactId>silvertail</artifactId>
35            <version>6.5.1</version>
36        </dependency>
37        <dependency>
38            <groupId>org.zkoss.zk</groupId>
39            <artifactId>zkplus</artifactId>
40            <version>6.5.1</version>
41        </dependency>
42        <dependency>
43            <groupId>org.zkoss.zk</groupId>
44            <artifactId>zhtml</artifactId>
45            <version>6.5.1</version>
46        </dependency>
47        <dependency>
48            <groupId>com.google.code.gson</groupId>
49            <artifactId>gson</artifactId>
50            <version>2.2.2</version>
51        </dependency>
52        <dependency>
53            <groupId>eu.clarin.sru</groupId>
54            <artifactId>sru-client</artifactId>
55            <version>0.9.0</version>
56        </dependency>
57        <dependency>
58            <groupId>eu.clarin.weblicht</groupId>
59            <artifactId>wlfxb</artifactId>
60            <version>1.2.2</version>
61        </dependency>
62    </dependencies>
63    <build>
64        <finalName>${project.artifactId}</finalName>
65        <plugins>
66            <plugin>
67                <groupId>org.apache.maven.plugins</groupId>
68                <artifactId>maven-compiler-plugin</artifactId>
69                <version>2.3.2</version>
70                <configuration>
71                    <source>1.6</source>
72                    <target>1.6</target>
73                    <compilerArguments>
74                        <endorseddirs>${endorsed.dir}</endorseddirs>
75                    </compilerArguments>
76                </configuration>
77            </plugin>
78            <plugin>
79                <groupId>org.apache.maven.plugins</groupId>
80                <artifactId>maven-war-plugin</artifactId>
81                <version>2.1.1</version>
82                <configuration>
83                    <failOnMissingWebXml>false</failOnMissingWebXml>
84                </configuration>
85            </plugin>
86            <plugin>
87                <groupId>org.apache.maven.plugins</groupId>
88                <artifactId>maven-dependency-plugin</artifactId>
89                <version>2.1</version>
90                <executions>
91                    <execution>
92                        <phase>validate</phase>
93                        <goals>
94                            <goal>copy</goal>
95                        </goals>
96                        <configuration>
97                            <outputDirectory>${endorsed.dir}</outputDirectory>
98                            <silent>true</silent>
99                            <artifactItems>
100                                <artifactItem>
101                                    <groupId>javax</groupId>
102                                    <artifactId>javaee-endorsed-api</artifactId>
103                                    <version>6.0</version>
104                                    <type>jar</type>
105                                </artifactItem>
106                            </artifactItems>
107                        </configuration>
108                    </execution>
109                </executions>
110            </plugin>
111        </plugins>
112    </build>
113</project>
Note: See TracBrowser for help on using the repository browser.