Skip to content

Commit 49073d0

Browse files
authored
Update pom.xml
1 parent 0b0878c commit 49073d0

File tree

1 file changed

+33
-0
lines changed
  • innersource-repository-scanner

1 file changed

+33
-0
lines changed

innersource-repository-scanner/pom.xml

+33
Original file line numberDiff line numberDiff line change
@@ -397,4 +397,37 @@
397397
</plugin>
398398
</plugins>
399399
</reporting>
400+
401+
<profiles>
402+
<profile>
403+
<id>sign</id>
404+
<build>
405+
<plugins>
406+
<plugin>
407+
<groupId>org.apache.maven.plugins</groupId>
408+
<artifactId>maven-gpg-plugin</artifactId>
409+
<version>3.0.1</version>
410+
<executions>
411+
<execution>
412+
<id>sign-artifacts</id>
413+
<phase>verify</phase>
414+
<goals>
415+
<goal>sign</goal>
416+
</goals>
417+
<configuration>
418+
<keyname>${env.GPG_KEYID}</keyname>
419+
<passphraseServerId>${env.GPG_KEYID}</passphraseServerId>
420+
<gpgArguments>
421+
<arg>--pinentry-mode</arg>
422+
<arg>loopback</arg>
423+
</gpgArguments>
424+
</configuration>
425+
</execution>
426+
</executions>
427+
</plugin>
428+
</plugins>
429+
</build>
430+
</profile>
431+
</profiles>
432+
400433
</project>

0 commit comments

Comments
 (0)