Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.Ericsson:eiffel-remrem-publish:2.1.6'
}
dependencies {
implementation("com.github.Ericsson:eiffel-remrem-publish:2.1.6")
}
<dependency>
<groupId>com.github.Ericsson</groupId>
<artifactId>eiffel-remrem-publish</artifactId>
<version>2.1.6</version>
</dependency>
libraryDependencies += "com.github.Ericsson" % "eiffel-remrem-publish" % "2.1.6"
:dependencies [[com.github.Ericsson/eiffel-remrem-publish "2.1.6"]]
REMReM Publish is a microservice allowing sending of messages to a topic based exchange on a RabbitMQ Server. It has endpoints that must be called as a relative links.
The contents of this repository are licensed under the Apache License 2.0.
To get involved, please see Code of Conduct and contribution guidelines.
This repository forms part of the Eiffel Community. Eiffel is a protocol for technology agnostic machine-to-machine communication in continuous integration and delivery pipelines, aimed at securing scalability, flexibility and traceability. Eiffel is based on the concept of decentralized real time messaging, both to drive the continuous integration and delivery system and to document it.
Visit Eiffel Community to get started and get involved.