file-service
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>icu.lowcoder.spring.cloud</groupId>
<artifactId>file-service</artifactId>
<version>3.2.0</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>icu.lowcoder.spring.cloud</groupId>
<artifactId>service-parent</artifactId>
<version>3.2.0</version>
<relativePath>../service-parent</relativePath>
</parent>
<artifactId>file-service</artifactId>
<name>file-service</name>
<description>lowcoder spring cloud file service</description>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-oauth2</artifactId>
</dependency>
<dependency>
<groupId>icu.lowcoder.spring.commons</groupId>
<artifactId>ali-spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>icu.lowcoder.spring.commons</groupId>
<artifactId>commons-utils</artifactId>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>icu.lowcoder.spring.commons</groupId>
<artifactId>jpa-spring-boot-starter</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.spotify</groupId>
<artifactId>docker-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>