Skip to content
This repository has been archived by the owner on Sep 21, 2022. It is now read-only.

Latest commit

 

History

History
75 lines (63 loc) · 2 KB

README.md

File metadata and controls

75 lines (63 loc) · 2 KB

WISEBED API

This project provides JAXB Web service bindings for the official WISEBED Web services. The classes provided here were created using the official WSDL files using the JAXB compiler and manually enhanced with documentation and some little code tweaks.

Building

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/api-java.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.

Use in your Maven project

Add the following dependency to your pom.xml:

<dependency>
	<groupId>eu.wisebed</groupId>
	<artifactId>api</artifactId>
	<version>2.3</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>

Contact

Any feedback will be greatly appreciated, at the api-java GitHub project page or by contacting danbim or pfisterer.