MVN

cd.connect.composites.java : connect-composite-restapp

Maven & Gradle

May 07, 2019
8 stars

connect-composite-restapp · composite REST app - this represents the baseline version that the Connect-Java repository uses for building microservice based REST apps. As they are all Jersey based, there is no real need for Spring or Guice. They always include Tracing, Prometheus, Health checks, Application Lifecycle, easy config injection, Bathe for application start with Service Loader initializers. We are focused on using JIB for Docker generation.

<dependency>
    <groupId>cd.connect.composites.java</groupId>
    <artifactId>connect-composite-restapp</artifactId>
    <version>1.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of cd.connect.composites.java : connect-composite-restapp to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.1

All Versions

Choose a version of cd.connect.composites.java : connect-composite-restapp to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.1
connect-composite-restapp-1.1

How to add a dependency to Maven

Add the following cd.connect.composites.java : connect-composite-restapp maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>cd.connect.composites.java</groupId>
    <artifactId>connect-composite-restapp</artifactId>
    <version>1.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following cd.connect.composites.java : connect-composite-restapp gradle dependency to your build.gradle file:

implementation 'cd.connect.composites.java:connect-composite-restapp:1.1'

Gradle Kotlin DSL: Add the following cd.connect.composites.java : connect-composite-restapp gradle kotlin dependency to your build.gradle.kts file:

implementation("cd.connect.composites.java:connect-composite-restapp:1.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following cd.connect.composites.java : connect-composite-restapp sbt scala dependency to your build.sbt file:

libraryDependencies += "cd.connect.composites.java" % "connect-composite-restapp" % "1.1"