dict-converter-spring-boot-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>top.rish.converter</groupId> <artifactId>dict-converter-spring-boot-starter</artifactId> <version>1.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>top.rish.converter</groupId> <artifactId>converter</artifactId> <version>1.0</version> </parent> <artifactId>dict-converter-spring-boot-starter</artifactId> <description>基于java SpringBoot 开发框架的json字段翻译的拦截器插件 \n Interceptor plugin for JSON field translation based on Java SpringBoot development framework</description> <url>https://gitee.com/uidoer/dict-converter</url> <properties> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <spring-boot.version>2.7.18</spring-boot.version> </properties> <dependencies> <dependency> <groupId>top.rish.converter</groupId> <artifactId>dict-converter-core</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> </dependency> </dependencies> <dependencyManagement> <dependencies> <!-- spring boot 依赖 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>${spring-boot.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <scm> <url>https://gitee.com/uidoer/dict-converter/tree/main</url> <connection>scm:git:https://gitee.com/uidoer/dict-converter.git</connection> <developerConnection>scm:git:https://gitee.com/uidoer/dict-converter.git</developerConnection> </scm> <developers> <developer> <name>rish</name> <email>xian.zi.ming@qq.com</email> </developer> <developer> <name>uidoer</name> <email>2513889970@qq.com</email> </developer> </developers> <licenses> <license> <name>Apache 2</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> </project>