source: SRUAggregator/trunk/pom.xml @ 2738

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

fixed no-scroll-in-search-results panel bug;
added testing mode to test endpoints on development servers;
added fist functionality for the show-case: save TCF into Personal Workspace using sardine library;
added: in scan operation the resource handle is put in quotes to avoid parse error.

File size: 4.7 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        <dependency>
63            <groupId>com.sun.jersey</groupId>
64            <artifactId>jersey-client</artifactId>
65            <version>1.17.1</version>
66        </dependency>
67        <dependency>
68            <groupId>com.googlecode.sardine</groupId>
69            <artifactId>sardine</artifactId>
70            <version>314</version>
71            <type>jar</type>
72        </dependency>
73    </dependencies>
74    <build>
75        <finalName>${project.artifactId}</finalName>
76        <plugins>
77            <plugin>
78                <groupId>org.apache.maven.plugins</groupId>
79                <artifactId>maven-compiler-plugin</artifactId>
80                <version>2.3.2</version>
81                <configuration>
82                    <source>1.6</source>
83                    <target>1.6</target>
84                    <compilerArguments>
85                        <endorseddirs>${endorsed.dir}</endorseddirs>
86                    </compilerArguments>
87                </configuration>
88            </plugin>
89            <plugin>
90                <groupId>org.apache.maven.plugins</groupId>
91                <artifactId>maven-war-plugin</artifactId>
92                <version>2.1.1</version>
93                <configuration>
94                    <failOnMissingWebXml>false</failOnMissingWebXml>
95                </configuration>
96            </plugin>
97            <plugin>
98                <groupId>org.apache.maven.plugins</groupId>
99                <artifactId>maven-dependency-plugin</artifactId>
100                <version>2.1</version>
101                <executions>
102                    <execution>
103                        <phase>validate</phase>
104                        <goals>
105                            <goal>copy</goal>
106                        </goals>
107                        <configuration>
108                            <outputDirectory>${endorsed.dir}</outputDirectory>
109                            <silent>true</silent>
110                            <artifactItems>
111                                <artifactItem>
112                                    <groupId>javax</groupId>
113                                    <artifactId>javaee-endorsed-api</artifactId>
114                                    <version>6.0</version>
115                                    <type>jar</type>
116                                </artifactItem>
117                            </artifactItems>
118                        </configuration>
119                    </execution>
120                </executions>
121            </plugin>
122        </plugins>
123    </build>
124</project>
Note: See TracBrowser for help on using the repository browser.