source: FCSSimpleEndpoint/trunk/pom.xml @ 5477

Last change on this file since 5477 was 5477, checked in by margaretha@ids-mannheim.de, 10 years ago

Added endpoint description,
updated SimpleResourceInfoInventory? according to the new format.

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/xml
File size: 3.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>fcs-simple-endpoint</artifactId>
6    <version>2.0-SNAPSHOT</version>
7    <packaging>jar</packaging>
8    <name>A simple CLARIN FCS endpoint</name>
9    <description>
10        A simple CLARIN FCS endpoint implementation to ease the development of CLARIN FCS endpoints.
11    </description>
12
13    <properties>
14        <!-- project settings -->
15        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16        <!-- plug-in settings -->
17        <maven.compiler.source>1.6</maven.compiler.source>
18        <maven.compiler.target>1.6</maven.compiler.target>
19        <!-- versions of common dependencies -->
20        <slf4j.version>1.7.2</slf4j.version>
21    </properties>
22
23    <dependencies>
24        <dependency>
25            <groupId>org.slf4j</groupId>
26            <artifactId>slf4j-api</artifactId>
27        </dependency>
28
29        <dependency>
30            <groupId>javax.servlet</groupId>
31            <artifactId>servlet-api</artifactId>
32            <version>2.5</version>
33            <type>jar</type>
34            <scope>provided</scope>
35        </dependency>
36
37        <dependency>
38            <groupId>eu.clarin.sru</groupId>
39            <artifactId>sru-server</artifactId>
40            <version>1.5.0</version>
41        </dependency>
42       
43        <dependency>
44            <groupId>org.codehaus.woodstox</groupId>
45            <artifactId>woodstox-core-lgpl</artifactId>
46            <version>4.1.3</version>
47        </dependency> 
48    </dependencies>
49
50    <dependencyManagement>
51        <dependencies>
52            <dependency>
53                <groupId>org.slf4j</groupId>
54                <artifactId>slf4j-api</artifactId>
55                <version>${slf4j.version}</version>
56            </dependency>
57
58        </dependencies>
59    </dependencyManagement>
60
61    <build>
62        <plugins>
63            <plugin>
64                <groupId>org.apache.maven.plugins</groupId>
65                <artifactId>maven-compiler-plugin</artifactId>
66                <version>2.1</version>
67                <configuration>
68                    <source>${maven.compiler.source}</source>
69                    <target>${maven.compiler.target}</target>
70                </configuration>
71            </plugin>
72
73            <plugin>
74                <groupId>org.apache.maven.plugins</groupId>
75                <artifactId>maven-javadoc-plugin</artifactId>
76                <version>2.8.1</version>
77                <executions>
78                    <execution>
79                        <id>attach-javadoc</id>
80                        <goals>
81                            <goal>jar</goal>
82                        </goals>
83                    </execution>
84                </executions>
85            </plugin>
86
87            <plugin>
88                <groupId>org.apache.maven.plugins</groupId>
89                <artifactId>maven-source-plugin</artifactId>
90                <version>2.2</version>
91                <executions>
92                    <execution>
93                        <id>attach-source</id>
94                        <goals>
95                            <goal>jar-no-fork</goal>
96                        </goals>
97                    </execution>
98                </executions>
99            </plugin>
100        </plugins>
101    </build>
102
103    <repositories>
104        <repository>
105            <id>clarin</id>
106            <url>http://catalog.clarin.eu/ds/nexus/content/repositories/Clarin/</url>
107            <layout>default</layout>
108        </repository>
109    </repositories>
110
111</project>
Note: See TracBrowser for help on using the repository browser.