Skip to content

symbiote-h2020/SymbIoTeLibraries

Repository files navigation

Build Status codecov.io

SymbIoTe Libraries

This repository contains common SymbIoTe libraries used throughout different components and different layers. Its main use is to standardize classes which will be used for communication among components. Furthermore, it also contains security packages to facilitate secure access to resources (e.g. SecurityHandler).

How to include them in your code

Jitpack can be used to easily import SymbIoTe Libraries in your code. In Jitpack's website you can find guidelines about how to include repositories for different build automation systems. In the symbIoTe project which utilizes gradle, developers have to add the following in the build.gradle:

  1. Add jitpack in your root build.gradle at the end of repositories:
allprojects {
	repositories {
		...
		maven { url 'https://jitpack.io' }
	}
}
  1. Add the dependency:
compile('com.github.symbiote-h2020:SymbIoTeLibraries:develop-SNAPSHOT')

As you notice above, during development (i.e. feature and develop branches of component repositories) the develop branch of the SymbIoTeLibraries needs to be used, in order to make sure that the latest version is always retrieved. In the official releases (i.e. master branches of Component repositories), this dependecy will be changed to:

compile('com.github.symbiote-h2020:SymbIoTeLibraries:{tag}')

by the SymbIoTe integrators.