Skip to content

Commit 3fdbc03

Browse files
authored
Merge pull request #35 from cicirello/development
Development
2 parents ab776fb + 7fa6360 commit 3fdbc03

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

.github/workflows/maven-publish.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@ jobs:
5151
java-version: 1.8
5252
server-id: github
5353

54+
- name: Build with Maven
55+
run: mvn -B package --file pomgh.xml
56+
5457
- name: Update package version
5558
run: mvn versions:set -DnewVersion=${{ steps.get_version.outputs.VERSION }}
5659

pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,19 @@
168168
</includes>
169169
</configuration>
170170
</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>
171184
</plugins>
172185
</build>
173186

0 commit comments

Comments
 (0)