1
0
mirror of synced 2026-04-22 01:18:51 +08:00

📦 添加 github 打包地址

This commit is contained in:
Yangkai.Shen
2019-08-21 09:59:58 +08:00
parent 2f6946c6b1
commit 219f390284

29
pom.xml
View File

@@ -261,6 +261,35 @@
</snapshotRepository>
</distributionManagement>
</profile>
<profile>
<id>github</id>
<build>
<plugins>
<!-- GPG -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<!-- 发布到GitHub仓库 -->
<repository>
<id>github-xkcoding</id>
<name>GitHub Xkcoding Apache Maven Packages</name>
<url>https://maven.pkg.github.com/xkcoding/justauth-spring-boot-starter</url>
</repository>
</distributionManagement>
</profile>
</profiles>
</project>