1 | <?xml version="1.0" encoding="UTF-8"?> |
---|
2 | <!-- |
---|
3 | This program is free software: you can redistribute it and/or modify |
---|
4 | it under the terms of the GNU General Public License as published by |
---|
5 | the Free Software Foundation, either version 3 of the License, or |
---|
6 | (at your option) any later version. |
---|
7 | |
---|
8 | This program is distributed in the hope that it will be useful, |
---|
9 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
10 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
11 | GNU General Public License for more details. |
---|
12 | |
---|
13 | You should have received a copy of the GNU General Public License |
---|
14 | along with this program. If not, see <http://www.gnu.org/licenses/>. |
---|
15 | --> |
---|
16 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
---|
17 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
---|
18 | <modelVersion>4.0.0</modelVersion> |
---|
19 | |
---|
20 | <groupId>eu.clarin.cqi</groupId> |
---|
21 | <version>1.2</version> |
---|
22 | <packaging>jar</packaging> |
---|
23 | |
---|
24 | <name>CQI Client</name> |
---|
25 | <url>http://weblicht.sfs.uni-tuebingen.de/</url> |
---|
26 | |
---|
27 | <properties> |
---|
28 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
---|
29 | </properties> |
---|
30 | |
---|
31 | <dependencies> |
---|
32 | <dependency> |
---|
33 | <groupId>junit</groupId> |
---|
34 | <artifactId>junit</artifactId> |
---|
35 | <version>4.10</version> |
---|
36 | <scope>test</scope> |
---|
37 | <type>jar</type> |
---|
38 | <exclusions> |
---|
39 | <exclusion> |
---|
40 | <artifactId>hamcrest-core</artifactId> |
---|
41 | <groupId>org.hamcrest</groupId> |
---|
42 | </exclusion> |
---|
43 | </exclusions> |
---|
44 | </dependency> |
---|
45 | </dependencies> |
---|
46 | <artifactId>cqi-client</artifactId> |
---|
47 | <licenses> |
---|
48 | <license> |
---|
49 | <name>GNU General Public License, Version 3</name> |
---|
50 | <url>http://www.gnu.org/licenses/</url> |
---|
51 | </license> |
---|
52 | </licenses> |
---|
53 | <build> |
---|
54 | <plugins> |
---|
55 | <plugin> |
---|
56 | <groupId>org.apache.maven.plugins</groupId> |
---|
57 | <artifactId>maven-deploy-plugin</artifactId> |
---|
58 | <version>2.7</version> |
---|
59 | </plugin> |
---|
60 | <plugin> |
---|
61 | <groupId>org.apache.maven.plugins</groupId> |
---|
62 | <artifactId>maven-javadoc-plugin</artifactId> |
---|
63 | <version>2.9</version> |
---|
64 | <executions> |
---|
65 | <execution> |
---|
66 | <id>attach-javadocs</id> |
---|
67 | <goals> |
---|
68 | <goal>jar</goal> |
---|
69 | </goals> |
---|
70 | </execution> |
---|
71 | </executions> |
---|
72 | </plugin> |
---|
73 | <plugin> |
---|
74 | <groupId>org.apache.maven.plugins</groupId> |
---|
75 | <artifactId>maven-source-plugin</artifactId> |
---|
76 | <version>2.2.1</version> |
---|
77 | </plugin> |
---|
78 | </plugins> |
---|
79 | </build> |
---|
80 | </project> |
---|