coco-spring-boot-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.patton174</groupId>
<artifactId>coco-spring-boot-starter</artifactId>
<version>2.0.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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.patton174</groupId>
<artifactId>coco-framework</artifactId>
<version>2.0.1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>coco-spring-boot-starter</artifactId>
<name>Coco Spring Boot Starter</name>
<description>Single starter dependency for Coco business applications.</description>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>coco-api</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>coco-context</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>coco-exception</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>coco-i18n</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>coco-logging</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>coco-feature-runtime</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>coco-config</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>coco-feature-web</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>coco-feature-mybatis-plus</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>coco-feature-audit</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>coco-feature-security</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>coco-feature-tenant</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>coco-feature-data-permission</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>coco-feature-openapi</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>coco-feature-codegen</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>coco-spring-boot-autoconfigure</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>