Skip to content

Commit 25ea0cf

Browse files
committed
Update pom.xml to reflect repository ownership transfer and add Maven Central publishing configuration.
1 parent 7451840 commit 25ea0cf

2 files changed

Lines changed: 10 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,6 @@ jobs:
2020
run: chmod +x mvnw
2121

2222
- name: Build
23-
run: ./mvnw -B clean verify
23+
run: ./mvnw -B clean verify
24+
env:
25+
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}

pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,13 @@
8787
<groupId>org.apache.maven.plugins</groupId>
8888
<artifactId>maven-gpg-plugin</artifactId>
8989
<version>3.1.0</version>
90+
<configuration>
91+
<passphrase>${env.GPG_PASSPHRASE}</passphrase>
92+
<gpgArguments>
93+
<arg>--pinentry-mode</arg>
94+
<arg>loopback</arg>
95+
</gpgArguments>
96+
</configuration>
9097
<executions>
9198
<execution>
9299
<id>sign-artifacts</id>

0 commit comments

Comments
 (0)