radp-archetype-simple
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>space.x9x.radp</groupId> <artifactId>radp-archetype-simple</artifactId> <version>3.19.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>space.x9x.radp</groupId> <artifactId>radp-archetypes</artifactId> <version>3.19.1</version> </parent> <artifactId>radp-archetype-simple</artifactId> <name>${project.artifactId}</name> <properties> <start-class>space.x9x.radp.Application</start-class> <build.jib.enabled>true</build.jib.enabled> <build.layers.enabled>true</build.layers.enabled> <!-- 是否激活分层构建 --> <docker.build.image_name /> <maven.install.skip>true</maven.install.skip> <maven.deploy.skip>true</maven.deploy.skip> <skipPublishing>true</skipPublishing> </properties> <dependencies> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </dependency> <dependency> <groupId>com.mysql</groupId> <artifactId>mysql-connector-j</artifactId> </dependency> <dependency> <groupId>space.x9x.radp</groupId> <artifactId>radp-redis-spring-boot-starter</artifactId> </dependency> <dependency> <groupId>space.x9x.radp</groupId> <artifactId>radp-jasypt-spring-boot-starter</artifactId> </dependency> <dependency> <groupId>space.x9x.radp</groupId> <artifactId>radp-mybatis-spring-boot-starter</artifactId> </dependency> <dependency> <groupId>space.x9x.radp</groupId> <artifactId>radp-liquibase-spring-boot-starter</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>space.x9x.radp</groupId> <artifactId>radp-logging-spring-boot-starter</artifactId> </dependency> <dependency> <groupId>space.x9x.radp</groupId> <artifactId>radp-springdoc-webmvc-spring-boot-starter</artifactId> </dependency> <dependency> <groupId>space.x9x.radp</groupId> <artifactId>radp-spring-boot-test</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <finalName>${project.name}</finalName> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project>