Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

MicroProfile/FaultTolerance/HowToUse

To add the API artifact as a dependency:

<dependency>

 <groupId>org.eclipse.microprofile.fault-tolerance</groupId>
 <artifactId>microprofile-fault-tolerance-api</artifactId>
 <version>1.0-RC2</version>

</dependency>


For artifacts that aren't released to Maven Central, add the Eclipse repository in your project. Add the following into settings.xml:

   <repository>
         <id>eclipse.microprofile</id>
         <name>Eclipse MicroProfile Repository</name>
         <url>https://repo.eclipse.org/content/groups/microprofile/</url>
         <releases><enabled>true</enabled></releases>
         <snapshots><enabled>true</enabled></snapshots>
   </repository>

Back to the top