oksms-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>cn.toint</groupId> <artifactId>oksms-parent</artifactId> <version>1.0.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright 2025 Toint (599818663@qq.com) ~ <p> ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ <p> ~ http://www.apache.org/licenses/LICENSE-2.0 ~ <p> ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <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>oksms-parent</artifactId> <version>1.0.1</version> <packaging>pom</packaging> <modules> <module>oksms</module> </modules> <name>oksms</name> <description>oksms是一个Java短信、邮箱推送工具类库</description> <url>https://github.com/toint-open/oksms</url> <developers> <developer> <name>Toint</name> <email>599818663@qq.com</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/toint-open/oksms.git</connection> <developerConnection>scm:git:ssh://github.com/toint-open/oksms.git</developerConnection> <url>https://github.com/toint-open/oksms</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> <ok-dependencies.version>1.0.3</ok-dependencies.version> <oktool.version>2.0.0-alpha-4</oktool.version> <springboot.version>3.5.3</springboot.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>cn.toint</groupId> <artifactId>ok-dependencies</artifactId> <version>${ok-dependencies.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>${springboot.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>cn.toint</groupId> <artifactId>oktool</artifactId> <version>${oktool.version}</version> </dependency> <!--阿里云短信依赖冲突--> <dependency> <groupId>com.aliyun</groupId> <artifactId>credentials-java</artifactId> <version>1.0.1</version> </dependency> <dependency> <groupId>org.jacoco</groupId> <artifactId>org.jacoco.agent</artifactId> <version>0.8.8</version> <classifier>runtime</classifier> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <!-- 统一更新pom版本 --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.18.0</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>