使用release插件提交发布插件

This commit is contained in:
hanxuanyu 2022-01-21 23:19:49 +08:00
parent bece31356d
commit d3308b995a

28
pom.xml
View File

@ -18,9 +18,9 @@
</licenses>
<url>https://github.com/hanxuanyu/hxuanyu-springboot-starter/</url>
<scm>
<connection>scm:git:git@github.com:hanxuanyu/hxuanyu-springboot-starter.git</connection>
<developerConnection>scm:git:git@github.com:hanxuanyu/hxuanyu-springboot-starter.git</developerConnection>
<url>git@github.com:hanxuanyu/hxuanyu-springboot-starter.git</url>
<connection>scm:git:git@git.hxuanyu.com:hxuanyu/hxuanyu-spring-boot-starter.git</connection>
<developerConnection>scm:git:git@git.hxuanyu.com:hxuanyu/hxuanyu-spring-boot-starter.git</developerConnection>
<url>https://git.hxuanyu.com/hxuanyu/hxuanyu-spring-boot-starter</url>
</scm>
<developers>
<developer>
@ -158,6 +158,28 @@
</execution>
</executions>
</plugin>
<!-- GIT -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.0-beta-7</version>
<configuration>
<providerImplementations>
<git>jgit</git>
</providerImplementations>
<username>hxuanyu</username>
<password>abcabc..123</password>
<tagBase>${project.artifactId}-${project.version}</tagBase>
<goals>-f pom.xml deploy</goals>
</configuration>
<dependencies>
<dependency>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-jgit</artifactId>
<version>1.9.5</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
<distributionManagement>