代码拉取完成,页面将自动刷新
<?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>
<packaging>pom</packaging>
<modules>
<module>mybatis-batch</module>
<module>mybatis-batch-starter</module>
<module>mybatis-batch-spring</module>
</modules>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.3</version>
<relativePath/>
</parent>
<groupId>io.github.egd-prodigal</groupId>
<artifactId>mybatisBatch</artifactId>
<version>${mybatis.batch.version}</version>
<name>mybatisBatch</name>
<description>Batch Insert for Mybatis</description>
<developers>
<developer>
<id>1</id>
<name>生一鸣</name>
<email>yeeminshon@outlook.com</email>
<url>https://yeemin.site</url>
<roles>
<role>manager</role>
<role>developer</role>
</roles>
</developer>
<developer>
<id>2</id>
<name>宋祥富</name>
<email>784413317@qq.com</email>
<roles>
<role>developer</role>
</roles>
</developer>
<developer>
<id>3</id>
<name>曾广霏</name>
<email>guangfeizeng163@163.com</email>
<roles>
<role>developer</role>
</roles>
</developer>
</developers>
<properties>
<java.version>1.8</java.version>
<mybatis.batch.version>2.0.5</mybatis.batch.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>2.2.2</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.5.9</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
<version>2.0.7</version>
</dependency>
</dependencies>
</dependencyManagement>
<scm>
<connection>scm:git:git@github.com:egd-prodigal/mybatisBatch.git</connection>
<developerConnection>scm:git:git@github.com:egd-prodigal/mybatisBatch.git</developerConnection>
<url>git@github.com:egd-prodigal/mybatisBatch.git</url>
</scm>
<issueManagement>
<system>Github Issue</system>
<url>https://github.com/egd-prodigal/mybatisBatch/issues</url>
</issueManagement>
<licenses>
<license>
<name>MIT</name>
<url>https://github.com/egd-prodigal/mybatisBatch/blob/master/LICENSE</url>
</license>
</licenses>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<distributionManagement>
<snapshotRepository>
<id>oss</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>oss</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>oss</id>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>oss</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>oss</serverId>
<nexusUrl>https://s01.oss.sonatype.org</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<!-- 发布命令
export GPG_TTY=$(tty)
mvn -U clean deploy -P release -DskipTests -Dgpg.passphrase=这是个只有我知道的密码 -->
</project>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。