custom-test
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.alice52</groupId>
<artifactId>custom-test</artifactId>
<version>0.0.5</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>io.github.alice52</groupId>
<artifactId>common-api</artifactId>
<version>0.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>custom-test</artifactId>
<packaging>pom</packaging>
<modules>
<module>custom-test-openapi</module>
<module>custom-test-http</module>
<module>custom-test-uid</module>
<module>custom-test-database</module>
<module>custom-common</module>
<module>custom-test-redis</module>
<module>custom-syntax</module>
<module>custom-oss</module>
<module>custom-test-mq</module>
<module>custom-test-log</module>
<module>custom-test-crypt</module>
<module>custom-kotlin</module>
</modules>
<dependencies>
<dependency>
<groupId>io.github.alice52</groupId>
<artifactId>common-api-inject</artifactId>
<version>${project.version}</version>
</dependency>
<!-- spring -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<artifactId>spring-boot-starter-tomcat</artifactId>
<groupId>org.springframework.boot</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-undertow</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<!-- test -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>