Skip to content

Commit e3ebc11

Browse files
committed
Maven Central Repository
1 parent 5ff5436 commit e3ebc11

File tree

2 files changed

+21
-34
lines changed

2 files changed

+21
-34
lines changed

.github/workflows/mavenpublish.yml

-30
This file was deleted.

pom.xml

+21-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<modelVersion>4.0.0</modelVersion>
66
<name>${component.name}</name>
7-
<groupId>eu.eckig</groupId>
7+
<groupId>io.github.eckig</groupId>
88
<artifactId>grapheditor</artifactId>
99
<version>18.0.0</version>
1010
<packaging>pom</packaging>
@@ -20,10 +20,13 @@
2020
</licenses>
2121

2222
<distributionManagement>
23+
<snapshotRepository>
24+
<id>ossrh</id>
25+
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
26+
</snapshotRepository>
2327
<repository>
24-
<id>github</id>
25-
<name>GitHub Packages</name>
26-
<url>https://maven.pkg.github.com/eckig/graph-editor</url>
28+
<id>ossrh</id>
29+
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
2730
</repository>
2831
</distributionManagement>
2932

@@ -122,6 +125,20 @@
122125
<quiet>true</quiet>
123126
</configuration>
124127
</plugin>
128+
<plugin>
129+
<groupId>org.apache.maven.plugins</groupId>
130+
<artifactId>maven-gpg-plugin</artifactId>
131+
<version>1.5</version>
132+
<executions>
133+
<execution>
134+
<id>sign-artifacts</id>
135+
<phase>verify</phase>
136+
<goals>
137+
<goal>sign</goal>
138+
</goals>
139+
</execution>
140+
</executions>
141+
</plugin>
125142
</plugins>
126143
</build>
127144

0 commit comments

Comments
 (0)