screw-spring-boot-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.springboot.plugin</groupId> <artifactId>screw-spring-boot-starter</artifactId> <version>0.0.3</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.springboot.plugin</groupId> <artifactId>screw</artifactId> <version>0.0.3</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>screw-spring-boot-starter</artifactId> <name>screw-spring-boot-starter</name> <description>screw-spring-boot-starter</description> <properties> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> </properties> <dependencies> <!-- mica-auto--> <dependency> <groupId>net.dreamlu</groupId> <artifactId>mica-auto</artifactId> <version>3.1.1</version> <scope>provided</scope> </dependency> <!--项目核心包--> <dependency> <groupId>io.springboot.plugin</groupId> <artifactId>screw-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>3.1.1</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> </project>