We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f44b12 commit d80b20eCopy full SHA for d80b20e
pom.xml
@@ -174,4 +174,33 @@
174
<version>4.13.2</version>
175
</dependency>
176
</dependencies>
177
+
178
+ <profiles>
179
+ <profile>
180
+ <id>release</id>
181
+ <build>
182
+ <plugins>
183
+ <plugin>
184
+ <groupId>org.apache.maven.plugins</groupId>
185
+ <artifactId>maven-gpg-plugin</artifactId>
186
+ <executions>
187
+ <execution>
188
+ <id>sign-artifacts</id>
189
+ <phase>verify</phase>
190
+ <goals>
191
+ <goal>sign</goal>
192
+ </goals>
193
+ <configuration>
194
+ <gpgArguments>
195
+ <arg>--pinentry-mode</arg>
196
+ <arg>loopback</arg>
197
+ </gpgArguments>
198
+ </configuration>
199
+ </execution>
200
+ </executions>
201
+ </plugin>
202
+ </plugins>
203
+ </build>
204
+ </profile>
205
+ </profiles>
206
</project>
0 commit comments