hlrc / client / java / pom.xml @ a97b7cf5
History | View | Annotate | Download (3.341 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.cit_ec.opensource.hlrc</groupId> |
| 5 |
<artifactId>hlrc-client</artifactId> |
| 6 |
<version>0.2</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.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>rsb</groupId> |
| 94 |
<artifactId>rsb</artifactId> |
| 95 |
<version>[0.15.0,)</version> |
| 96 |
</dependency>
|
| 97 |
<dependency>
|
| 98 |
<groupId>rsb</groupId> |
| 99 |
<artifactId>rst</artifactId> |
| 100 |
<version>[0.15.0,)</version> |
| 101 |
</dependency>
|
| 102 |
<dependency>
|
| 103 |
<groupId>commons-cli</groupId> |
| 104 |
<artifactId>commons-cli</artifactId> |
| 105 |
<version>1.2</version> |
| 106 |
</dependency>
|
| 107 |
<dependency>
|
| 108 |
<groupId>commons-lang</groupId> |
| 109 |
<artifactId>commons-lang</artifactId> |
| 110 |
<version>2.6</version> |
| 111 |
</dependency>
|
| 112 |
</dependencies>
|
| 113 |
<repositories>
|
| 114 |
<repository>
|
| 115 |
<id>citec-releases</id> |
| 116 |
<name>CITEC Maven Repository Server</name> |
| 117 |
<url>https://mvn.cit-ec.de/nexus/content/repositories/releases/</url> |
| 118 |
<layout>default</layout> |
| 119 |
<releases>
|
| 120 |
<enabled>true</enabled> |
| 121 |
</releases>
|
| 122 |
</repository>
|
| 123 |
</repositories>
|
| 124 |
</project>
|