publish to github packages

This commit is contained in:
Shautvast 2023-07-26 18:10:06 +02:00
parent fe9069a898
commit 927611d44b

11
pom.xml
View file

@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>nl.sander</groupId> <groupId>nl.sander</groupId>
<artifactId>reflective</artifactId> <artifactId>reflective</artifactId>
<version>0.0.1-SNAPSHOT</version> <version>1.0.0</version>
<name>reflective</name> <name>reflective</name>
<description>Reflective utils that don't use java.lang.reflect</description> <description>Reflective utils that don't use java.lang.reflect</description>
@ -28,12 +28,13 @@
<distributionManagement> <distributionManagement>
<repository> <repository>
<id>ossrh</id> <id>github</id>
<name>Central Repository OSSRH</name> <name>GitHub OWNER Apache Maven Packages</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> <url>https://maven.pkg.github.com/shautvast/reflective</url>
</repository> </repository>
</distributionManagement> </distributionManagement>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
@ -41,7 +42,7 @@
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version> <version>3.11.0</version>
<configuration> <configuration>
<release>11</release> <release>11</release>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>