1 Star 1 Fork 0

炎黄的子孙 / mysql分区组件

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 7.09 KB
一键复制 编辑 原始数据 按行查看 历史
YCWB0478 提交于 2022-04-15 15:51 . 发布到中央仓库
<?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>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.6.6</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.gitee.vae1324</groupId>
<artifactId>mysql-partition-component</artifactId>
<version>1.0.0</version>
<name>mysql-partition-component</name>
<packaging>jar</packaging>
<description>mysql 分区工具</description>
<properties>
<java.version>1.8</java.version>
<!--插件版本-->
<!-- <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>-->
<!-- <maven-release-plugin.version>3.0.0-M1</maven-release-plugin.version>-->
<!-- <maven-source-plugin.version>3.2.1</maven-source-plugin.version>-->
<!-- <maven-javadoc-plugin.version>3.2.0</maven-javadoc-plugin.version>-->
<!-- <nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version>-->
<!-- <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>-->
<!-- <maven-deploy-plugin.version>3.0.0-M1</maven-deploy-plugin.version>-->
</properties>
<!--开源协议...-->
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<!-->开发者的信息<-->
<developers>
<developer>
<name>hexl</name>
<email>hexl495@foxmail.com</email>
<roles>
<role>Project Manager</role>
<role>Architect</role>
</roles>
<url>https://gitee.com/vae1324/mysql-partition-component</url>
<timezone>+8</timezone>
</developer>
</developers>
<scm>
<url>https://gitee.com/vae1324/mysql-partition-component</url>
<connection>https://gitee.com/vae1324/mysql-partition-component.git</connection>
<developerConnection>https://gitee.com/vae1324/mysql-partition-component</developerConnection>
</scm>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
</dependencies>
<profiles>
<profile>
<!--注意,此id必须与setting.xml中指定的一致,不要自作聪明改它名字-->
<id>release</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<!--发布到中央SNAPSHOT仓库插件-->
<plugins>
<!-- <plugin>-->
<!-- <groupId>org.sonatype.plugins</groupId>-->
<!-- <artifactId>nexus-staging-maven-plugin</artifactId>-->
<!-- <version>1.6.7</version>-->
<!-- <extensions>true</extensions>-->
<!-- <configuration>-->
<!-- <serverId>ossrh</serverId>-->
<!-- <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>-->
<!-- <autoReleaseAfterClose>true</autoReleaseAfterClose>-->
<!-- </configuration>-->
<!-- </plugin>-->
<!--分割线-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</configuration>
</plugin>
<!--生成源码插件-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!--生成API文档插件-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<configuration>
<!-- jdk1.8要加上,1.7要去掉,否则会报错 -->
<additionalJOptions>
<additionalJOption>-Xdoclint:none</additionalJOption>
</additionalJOptions>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!--gpg插件-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<!--注意,此id必须与setting.xml中指定的一致-->
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</profile>
</profiles>
</project>
Java
1
https://gitee.com/vae1324/mysql-partition-component.git
git@gitee.com:vae1324/mysql-partition-component.git
vae1324
mysql-partition-component
mysql分区组件
1.0.0

搜索帮助