fusio-spring-boot-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>dev.flamelens</groupId>
<artifactId>fusio-spring-boot-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"
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>dev.flamelens</groupId>
<artifactId>fusio-parent</artifactId>
<version>1.1.1</version>
</parent>
<artifactId>fusio-spring-boot-starter</artifactId>
<name>fusio-spring-boot-starter</name>
<description>Drop-in Spring Boot auto-configuration: text/csv HttpMessageConverter and gzip request-body decompression backed by fusio pipelines</description>
<url>https://github.com/tim-warehouseorganizer/fusio/tree/main/fusio-spring-boot-starter</url>
<scm>
<url>https://github.com/tim-warehouseorganizer/fusio/tree/main/fusio-spring-boot-starter</url>
</scm>
<properties>
<spring-boot.version>4.0.5</spring-boot.version>
</properties>
<dependencyManagement>
<dependencies>
<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>dev.flamelens</groupId>
<artifactId>fusio-core</artifactId>
<version>${project.version}</version>
</dependency>
<!-- the host application supplies the web stack; provided is also on the test classpath -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-webmvc</artifactId>
<scope>provided</scope>
</dependency>
<!-- optional integrations: activate only when the host app has these stacks -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-restclient</artifactId>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-redis</artifactId>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-webmvc-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>