Skip to content

Commit 1dc924f

Browse files
authored
Merge pull request #34 from moacirrf/ft-fix-pom
Fix pom.xml and pipeline
2 parents f8391c1 + c1fe250 commit 1dc924f

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

.github/workflows/maven-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ jobs:
1414
java-version: '11'
1515
distribution: 'adopt'
1616
- name: NBM
17-
run: mvn install
17+
run: mvn test

pom.xml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
</developers>
1919
<scm>
2020
<connection>scm:git:https://github.com/moacirrf/nb-java-decompiler</connection>
21-
<developerConnection>scm:git:https://github.com/project-url.git</developerConnection>
21+
<developerConnection>scm:git:https://github.com/moacirrf/nb-java-decompiler</developerConnection>
2222
<url>https://github.com/moacirrf/nb-java-decompiler/tree/${project.scm.tag}</url>
2323
<tag>v1.0.2</tag>
2424
</scm>
@@ -94,6 +94,20 @@
9494
<artifactId>maven-surefire-plugin</artifactId>
9595
<version>2.22.0</version>
9696
</plugin>
97+
<plugin>
98+
<groupId>org.apache.maven.plugins</groupId>
99+
<artifactId>maven-gpg-plugin</artifactId>
100+
<version>1.6</version>
101+
<executions>
102+
<execution>
103+
<id>sign-artifacts</id>
104+
<phase>verify</phase>
105+
<goals>
106+
<goal>sign</goal>
107+
</goals>
108+
</execution>
109+
</executions>
110+
</plugin>
97111
</plugins>
98112
</build>
99113
<dependencies>

0 commit comments

Comments
 (0)