mybatisBatch
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.egd-prodigal</groupId> <artifactId>mybatisBatch</artifactId> <version>2.0.9</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 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.9</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>