Skip to content

Commit 3b94965

Browse files
committed
feat: CI/CD
1 parent ab2745f commit 3b94965

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

spring-boot-dependencies/pom.xml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -706,4 +706,49 @@
706706
</dependencies>
707707
</dependencyManagement>
708708

709+
<profiles>
710+
<profile>
711+
<id>local</id>
712+
<activation>
713+
<activeByDefault>true</activeByDefault>
714+
</activation>
715+
</profile>
716+
<profile>
717+
<id>release</id>
718+
<build>
719+
<plugins>
720+
<plugin>
721+
<groupId>org.apache.maven.plugins</groupId>
722+
<artifactId>maven-gpg-plugin</artifactId>
723+
</plugin>
724+
</plugins>
725+
</build>
726+
</profile>
727+
</profiles>
728+
729+
<build>
730+
<pluginManagement>
731+
<plugins>
732+
<plugin>
733+
<groupId>org.apache.maven.plugins</groupId>
734+
<artifactId>maven-gpg-plugin</artifactId>
735+
<version>3.0.1</version>
736+
<executions>
737+
<execution>
738+
<phase>verify</phase>
739+
<goals>
740+
<goal>sign</goal>
741+
</goals>
742+
</execution>
743+
</executions>
744+
<configuration>
745+
<gpgArguments>
746+
<arg>--pinentry-mode</arg>
747+
<arg>loopback</arg>
748+
</gpgArguments>
749+
</configuration>
750+
</plugin>
751+
</plugins>
752+
</pluginManagement>
753+
</build>
709754
</project>

0 commit comments

Comments
 (0)