Statistics
| Branch: | Tag: | Revision:

hlrc / client / java / pom.xml @ 2346dcd2

History | View | Annotate | Download (4.007 KB)

1

    
2
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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>de.citec.csra</groupId>
5
    <artifactId>hlrc-client</artifactId>
6
    <version>0.1-SNAPSHOT</version>
7
    <packaging>jar</packaging>
8
    <name>High Level Robot Control java client</name>
9
    <url>http://maven.apache.org</url>
10
    <build>
11
        <plugins>
12
            <plugin>
13
                <groupId>org.apache.maven.plugins</groupId>
14
                <artifactId>maven-compiler-plugin</artifactId>
15
                <version>3.1</version>
16
                <configuration>
17
                    <source>1.7</source>
18
                    <target>1.7</target>
19
                    <showDeprecation>true</showDeprecation>
20
                </configuration>
21
            </plugin>
22
            <plugin>
23
                <groupId>org.codehaus.mojo</groupId>
24
                <artifactId>appassembler-maven-plugin</artifactId>
25
                <version>1.8</version>
26
                <configuration>
27
                    <programs>
28
                        <program>
29
                            <mainClass>de.uni-bielefeld.cit-ec.opensource.hlrc.main.Cmd</mainClass>
30
                            <id>hlrc-client</id>
31
                            
32
                        </program>
33
                    </programs>
34
                    <!--                    <assembleDirectory>${project.build.directory}/dist</assembleDirectory>
35
                    <repositoryName>lib</repositoryName>
36
                    <repositoryLayout>flat</repositoryLayout>-->
37
                </configuration>
38
                <executions>
39
                    <execution>
40
                        <id>assemble</id>
41
                        <goals>
42
                            <goal>assemble</goal>
43
                        </goals>
44
                    </execution>
45
                </executions>
46
            </plugin>
47
        </plugins>
48
    </build>
49
    <licenses>
50
        <license>
51
            <name>GPLv3</name>
52
            <url>http://www.gnu.org/licenses/gpl.html</url>
53
        </license>
54
    </licenses>
55
    <organization>
56
        <name>Citec, Bielefeld University</name>
57
        <url>http://www.cit-ec.de/</url>
58
    </organization>
59
    <developers>
60
        <developer>
61
            <id>flier</id>
62
            <name>Florian Lier</name>
63
            <email>flier@techfak.uni-bielefeld.de</email>
64
            <url>https://www.cit-ec.de/de/users/flier</url>
65
            <roles>
66
                <role>architect</role>
67
                <role>developer</role>
68
            </roles>
69
            <timezone>+1</timezone>
70
        </developer>
71
    </developers>
72
    <properties>
73
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
74
    </properties>
75
    <dependencies>
76
        <dependency>
77
            <groupId>org.slf4j</groupId>
78
            <artifactId>slf4j-api</artifactId>
79
            <version>1.7.7</version>
80
        </dependency>
81
        <dependency>
82
            <groupId>org.slf4j</groupId>
83
            <artifactId>slf4j-simple</artifactId>
84
            <version>1.7.7</version>
85
        </dependency>            
86
        <dependency>
87
            <groupId>junit</groupId>
88
            <artifactId>junit</artifactId>
89
            <version>4.11</version>
90
            <scope>test</scope>
91
        </dependency>
92
        <dependency>
93
            <groupId>commons-cli</groupId>
94
            <artifactId>commons-cli</artifactId>
95
            <version>1.2</version>
96
        </dependency>
97
        <dependency>
98
            <groupId>commons-lang</groupId>
99
            <artifactId>commons-lang</artifactId>
100
            <version>2.6</version>
101
        </dependency>
102
    </dependencies>
103
    <distributionManagement>
104
        <repository>
105
            <id>citec</id>
106
            <name>CITEC Maven Repository Server</name>
107
            <url>https://repo.cit-ec.uni-bielefeld.de/content/repositories/releases/</url>
108
            <layout>default</layout>
109
        </repository>
110
    </distributionManagement>
111
</project>