This project provides an RESTful HTTP Web service and WebSocket API for WISEBED Testbeds.
To clone the wisegui submodule as well, use --recursive
:
git clone --recursive [email protected]:wisebed/rest-ws.git
No installation is required. To build, you need Java 6 or higher and Maven 2 or higher.
Before cloning this repository, be sure to enable automatic conversion
of CRLF/LF on your machine using git config --global core.autocrlf input
.
For more information, please refer to this article.
Clone the repository using git clone git://github.com/wisebed/rest-ws.git
.
To build, run mvn install
, this will build the program and place the
generated jar file in target/ and in your local Maven repository.
The project uses the Java endorsed standards override mechanism to use newer versions of libraries included in the JVM. If you run the project in an IDE or from command line make sure to add
-Djava.endorsed.dirs=target/endorsed
as a VM parameter after building the project at least once using maven.
Add the following dependency to your pom.xml:
<dependency>
<groupId>eu.wisebed</groupId>
<artifactId>rest-ws</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
Add the following repository to your pom.xml:
<repositories>
...
<repository>
<id>wisebed-maven-repository-releases</id>
<url>http://wisebed.eu/maven/releases/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
...
</repositories>
If you also want to work with SNAPSHOT dependencies, also add:
<repositories>
...
<repository>
<id>wisebed-maven-repository-snapshots</id>
<url>http://wisebed.eu/maven/snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
...
</repositories>
Any feedback will be greatly appreciated, at the rest-ws GitHub project page or by contacting danbim or pfisterer.