ok-dependencies
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>cn.toint</groupId> <artifactId>ok-dependencies</artifactId> <version>1.0.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> <groupId>cn.toint</groupId> <artifactId>ok-dependencies</artifactId> <version>1.0.0</version> <packaging>pom</packaging> <name>ok-dependencies</name> <description>依赖版本管理</description> <url>https://github.com/toint-open/ok-dependencies</url> <developers> <developer> <name>Toint</name> <email>599818663@qq.com</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/toint-open/ok-dependencies.git</connection> <developerConnection>scm:git:ssh://github.com/toint-open/ok-dependencies.git</developerConnection> <url>https://github.com/toint-open/ok-dependencies</url> </scm> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <properties> <java.version>21</java.version> <maven.compiler.source>21</maven.compiler.source> <maven.compiler.target>21</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <springboot.version>3.5.3</springboot.version> <okhttp.version>4.12.0</okhttp.version> <hutool6.version>6.0.0-M21</hutool6.version> <ttl.version>2.14.5</ttl.version> <jetbrains-annotations.version>26.0.2</jetbrains-annotations.version> <mybatis-flex.version>1.10.9</mybatis-flex.version> <druid.version>1.2.24</druid.version> <aliyun-sms.version>dysmsapi20170525</aliyun-sms.version> </properties> <dependencyManagement> <dependencies> <!--阿里云短信--> <dependency> <groupId>com.aliyun</groupId> <artifactId>dysmsapi20170525</artifactId> <version>${aliyun-sms.version}</version> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid-spring-boot-3-starter</artifactId> <version>${druid.version}</version> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp</artifactId> <version>${okhttp.version}</version> </dependency> <!--hutool6.x--> <dependency> <groupId>org.dromara.hutool</groupId> <artifactId>hutool-all</artifactId> <version>${hutool6.version}</version> </dependency> <dependency> <groupId>org.jetbrains</groupId> <artifactId>annotations</artifactId> <version>${jetbrains-annotations.version}</version> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>transmittable-thread-local</artifactId> <version>${ttl.version}</version> </dependency> <dependency> <groupId>cn.toint</groupId> <artifactId>oktool</artifactId> <version>2.0.0-20250704091903</version> </dependency> <dependency> <groupId>cn.toint</groupId> <artifactId>oktool-spring-boot-starter</artifactId> <version>2.0.0-20250704091903</version> </dependency> <dependency> <groupId>com.mybatis-flex</groupId> <artifactId>mybatis-flex-spring-boot3-starter</artifactId> <version>${mybatis-flex.version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>${springboot.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>${springboot.version}</version> </plugin> </plugins> </pluginManagement> <plugins> <!-- 统一更新pom版本 --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.17.1</version> <configuration> <generateBackupPoms>false</generateBackupPoms> </configuration> </plugin> <!--上传中央仓库--> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.8.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> <!--签名--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</version> <executions> <execution> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.2</version> <configuration> <doclint>none</doclint> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>