Skip to content

BuildingAndRunningUAFServer

Alain Pulluelo edited this page May 20, 2016 · 8 revisions

Building and Running UAF Server

There are many ways to set up and run the web app that is provided in this open source project: https://github.com/eBay/UAF/blob/master/fidouaf/README.md

Important thing to keep in mind is: This is a Maven Web App. Here is the POM file that define artifact and the dependencies: pom.xml

The second important thing to notice is that this project depends on the fido-uaf-core project:

		<dependency>
			<groupId>org.ebayopensource</groupId>
			<artifactId>fido-uaf-core</artifactId>
			<version>0.0.1-SNAPSHOT</version>
		</dependency>

The second one is the Java Maven project also provided. Here is it's pom.xml

Both projects are also coming with the Gradle build files, so they could be built using the Gradle, too.

Different Build Options

  • Using Eclipse
  • Using Maven
  • Using Gradle
  • Setting up the Jenkins build
Clone this wiki locally