source: FCSSimpleEndpoint/trunk/pom.xml @ 2751

Last change on this file since 2751 was 2751, checked in by oschonef, 11 years ago
  • initial import of sources
  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/xml
File size: 3.5 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>1.0.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    </dependencies>
43
44    <dependencyManagement>
45        <dependencies>
46            <dependency>
47                <groupId>org.slf4j</groupId>
48                <artifactId>slf4j-api</artifactId>
49                <version>${slf4j.version}</version>
50            </dependency>
51
52        </dependencies>
53    </dependencyManagement>
54
55    <build>
56        <plugins>
57            <plugin>
58                <groupId>org.apache.maven.plugins</groupId>
59                <artifactId>maven-compiler-plugin</artifactId>
60                <version>2.1</version>
61                <configuration>
62                    <source>${maven.compiler.source}</source>
63                    <target>${maven.compiler.target}</target>
64                </configuration>
65            </plugin>
66
67            <plugin>
68                <groupId>org.apache.maven.plugins</groupId>
69                <artifactId>maven-javadoc-plugin</artifactId>
70                <version>2.8.1</version>
71                <executions>
72                    <execution>
73                        <id>attach-javadoc</id>
74                        <goals>
75                            <goal>jar</goal>
76                        </goals>
77                    </execution>
78                </executions>
79            </plugin>
80
81            <plugin>
82                <groupId>org.apache.maven.plugins</groupId>
83                <artifactId>maven-source-plugin</artifactId>
84                <version>2.2</version>
85                <executions>
86                    <execution>
87                        <id>attach-source</id>
88                        <goals>
89                            <goal>jar-no-fork</goal>
90                        </goals>
91                    </execution>
92                </executions>
93            </plugin>
94        </plugins>
95    </build>
96
97    <repositories>
98        <repository>
99            <id>clarin</id>
100            <url>http://catalog.clarin.eu/ds/nexus/content/repositories/Clarin/</url>
101            <layout>default</layout>
102        </repository>
103    </repositories>
104
105</project>
Note: See TracBrowser for help on using the repository browser.