prepare pom for deploying to maven central

This commit is contained in:
RoboMWM 2020-12-13 17:02:32 -08:00
parent f50e08bccf
commit bb7768cf6f

15
pom.xml
View File

@ -4,9 +4,9 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>me.ryanhamshire</groupId>
<groupId>com.griefprevention</groupId>
<artifactId>GriefPrevention</artifactId>
<version>16.16.0</version>
<version>16.16.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
@ -129,4 +129,15 @@
</dependency>
</dependencies>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>