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.
2 parents ab776fb + 7fa6360 commit 3fdbc03Copy full SHA for 3fdbc03
.github/workflows/maven-publish.yml
@@ -51,6 +51,9 @@ jobs:
51
java-version: 1.8
52
server-id: github
53
54
+ - name: Build with Maven
55
+ run: mvn -B package --file pomgh.xml
56
+
57
- name: Update package version
58
run: mvn versions:set -DnewVersion=${{ steps.get_version.outputs.VERSION }}
59
pom.xml
@@ -168,6 +168,19 @@
168
</includes>
169
</configuration>
170
</plugin>
171
+ <plugin>
172
+ <groupId>org.apache.maven.plugins</groupId>
173
+ <artifactId>maven-jarsigner-plugin</artifactId>
174
+ <version>3.0.0</version>
175
+ <executions>
176
+ <execution>
177
+ <id>sign</id>
178
+ <goals>
179
+ <goal>sign</goal>
180
+ </goals>
181
+ </execution>
182
+ </executions>
183
+ </plugin>
184
</plugins>
185
</build>
186
0 commit comments