We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 152fe8e commit cdb3493Copy full SHA for cdb3493
pom.xml
@@ -6,7 +6,7 @@
6
7
<groupId>io.github.indyaah</groupId>
8
<artifactId>codeartifact-maven-extension</artifactId>
9
- <version>1.0.5</version>
+ <version>1.0.6</version>
10
<name>CodeArtifact Maven Extension</name>
11
<description>Maven extension that intercepts start of maven execution and injects token for CodeArtifact
12
repositories
@@ -142,6 +142,15 @@
142
<goals>
143
<goal>sign</goal>
144
</goals>
145
+ <configuration>
146
+ <!-- This is necessary for gpg to not try to use the pinentry programs -->
147
+ <gpgArguments>
148
+ <arg>--pinentry-mode</arg>
149
+ <arg>loopback</arg>
150
+ </gpgArguments>
151
+ <keyname>${env.KEYNAME}</keyname>
152
+ <passphrase>${env.PASSPHRASE}</passphrase>
153
+ </configuration>
154
</execution>
155
</executions>
156
</plugin>
0 commit comments