File tree 2 files changed +8
-14
lines changed
2 files changed +8
-14
lines changed Original file line number Diff line number Diff line change 23
23
24
24
- name : Import GPG Key
25
25
run : |
26
- if command -v gpg > /dev/null 2>&1; then
27
- echo "GPG is installed."
28
- gpg --version
29
- else
30
- echo "GPG is not installed."
31
- exit 1
32
- fi
33
- mkdir -p ~/.gnupg
34
- chmod 700 ~/.gnupg
35
- echo "pinentry-mode loopback" > ~/.gnupg/gpg.conf
36
26
echo "${{ secrets.GPG_PRIVATE_KEY }}" | gpg --batch --import
37
27
env :
38
28
GPG_PRIVATE_KEY : ${{ secrets.GPG_PRIVATE_KEY}}
Original file line number Diff line number Diff line change 166
166
<artifactId >maven-compiler-plugin</artifactId >
167
167
<version >3.6.1</version >
168
168
<configuration >
169
- <source >1.8 </source >
170
- <target >1.8 </target >
169
+ <source >11 </source >
170
+ <target >11 </target >
171
171
</configuration >
172
172
</plugin >
173
173
<plugin >
257
257
<goal >sign</goal >
258
258
</goals >
259
259
<configuration >
260
- <passphraseServerId >gpg.passphrase</passphraseServerId >
260
+ <gpgArguments >
261
+ <arg >--pinentry-mode</arg >
262
+ <arg >loopback</arg >
263
+ </gpgArguments >
264
+ <passphraseServerId >gpg.passphrase</passphraseServerId >
261
265
</configuration >
262
266
</execution >
263
267
</executions >
311
315
<github .global.server>github</github .global.server>
312
316
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
313
317
<project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
314
- <java .version>1.8 </java .version>
318
+ <java .version>11 </java .version>
315
319
<swagger-annotations-version >1.6.3</swagger-annotations-version >
316
320
<google-api-client-version >2.3.0</google-api-client-version >
317
321
<jersey-common-version >2.25.1</jersey-common-version >
You can’t perform that action at this time.
0 commit comments