infinitic-spring-boot-3-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.tiarebalbi.infinitic</groupId> <artifactId>infinitic-spring-boot-3-starter</artifactId> <version>1.1.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>com.tiarebalbi.infinitic</groupId> <artifactId>infinitic-spring-boot-3-starter</artifactId> <version>1.1.1</version> <name>Infinitic Spring Boot 3 Starter</name> <description>This repository provides an auto-configuration integration with Spring Boot for the Infinitic library, which is designed to orchestrate services distributed on multiple servers, built on top of Apache Pulsar. With Infinitic, you can easily manage complex scenarios, ensuring that failures don't disrupt your workflows.</description> <url>https://github.com/tiarebalbi/infinitic-spring-boot-integration</url> <licenses> <license> <name>Apache License 2.0</name> <url>https://github.com/tiarebalbi/infinitic-spring-boot-integration/blob/main/LICENSE</url> </license> </licenses> <developers> <developer> <id>tiarebalbi</id> <name>Tiare Balbi Bonamini</name> <email>me@tiarebalbi.com</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/tiarebalbi/infinitic-spring-boot-integration.git</connection> <developerConnection>scm:git@github.com:tiarebalbi/infinitic-spring-boot-integration.git</developerConnection> <url>https://github.com/tiarebalbi/infinitic-spring-boot-integration.git</url> </scm> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>1.9.22</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.infinitic</groupId> <artifactId>infinitic-client</artifactId> <version>0.11.7</version> <scope>runtime</scope> </dependency> <dependency> <groupId>io.infinitic</groupId> <artifactId>infinitic-worker</artifactId> <version>0.11.7</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> <version>3.2.2</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-reflect</artifactId> <version>1.9.22</version> <scope>runtime</scope> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>3.2.2</version> <scope>import</scope> <type>pom</type> </dependency> </dependencies> </dependencyManagement> </project>