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 54e0702 commit dd7d55aCopy full SHA for dd7d55a
2 files changed
.github/workflows/publish.yml
@@ -46,7 +46,7 @@ jobs:
46
mvn clean deploy \
47
-DskipTests=${{ github.event.inputs.skipTests || 'true' }} \
48
--no-transfer-progress \
49
- -P Java11+
+ -P java11plus
50
env:
51
CENTRAL_USERNAME: ${{ secrets.CENTRAL_USERNAME }}
52
CENTRAL_PASSWORD: ${{ secrets.CENTRAL_PASSWORD }}
pom.xml
@@ -426,6 +426,12 @@
426
<goals>
427
<goal>sign</goal>
428
</goals>
429
+ <configuration>
430
+ <gpgArguments>
431
+ <arg>--pinentry-mode</arg>
432
+ <arg>loopback</arg>
433
+ </gpgArguments>
434
+ </configuration>
435
</execution>
436
</executions>
437
</plugin>
@@ -728,7 +734,7 @@
728
734
</profile>
729
735
730
736
<profile>
731
- <id>Java 11+</id>
737
+ <id>java11plus</id>
732
738
<activation>
733
739
<jdk>[11,)</jdk>
740
</activation>
0 commit comments