factcast-example-client-spring-boot1
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.factcast</groupId> <artifactId>factcast-example-client-spring-boot1</artifactId> <version>0.1.4.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.factcast</groupId> <artifactId>factcast-examples</artifactId> <version>0.1.4.3</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>factcast-example-client-spring-boot1</artifactId> <properties> <spring-boot.version>1.5.21.RELEASE</spring-boot.version> </properties> <dependencyManagement> <dependencies> <!-- note: the order is important here! --> <!-- first, get all the factcast artifact's versions pinned --> <dependency> <groupId>org.factcast</groupId> <artifactId>factcast-bom</artifactId> <version>${project.version}</version> <type>pom</type> <scope>import</scope> </dependency> <!-- second, pick the spring boot versions you want to use --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>${spring-boot.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.factcast</groupId> <artifactId>factcast-client-grpc-boot1</artifactId> </dependency> <dependency> <groupId>org.factcast</groupId> <artifactId>factcast-spring-boot-autoconfigure</artifactId> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <executions> <execution> <goals> <goal>repackage</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>