Skip to content

Commit

Permalink
Move away from oss-parent
Browse files Browse the repository at this point in the history
  • Loading branch information
jchambers committed Aug 8, 2021
1 parent dc00718 commit 62e1733
Showing 1 changed file with 58 additions and 55 deletions.
113 changes: 58 additions & 55 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@
<artifactId>fast-uuid</artifactId>
<version>0.2-SNAPSHOT</version>
<packaging>bundle</packaging>

<name>fast-uuid</name>
<description>A Java library for quickly and efficiently parsing and writing UUIDs</description>
<inceptionYear>2018</inceptionYear>
<url>https://github.com/jchambers/fast-uuid</url>

<licenses>
<license>
Expand All @@ -17,11 +20,24 @@
</license>
</licenses>

<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<scm>
<connection>scm:git:https://github.com/jchambers/fast-uuid.git</connection>
<developerConnection>scm:git:[email protected]:jchambers/fast-uuid.git</developerConnection>
<url>https://github.com/jchambers/fast-uuid</url>
</scm>

<developers>
<developer>
<id>jon</id>
<name>Jon Chambers</name>
<email>[email protected]</email>
<url>https://github.com/jchambers</url>
<roles>
<role>developer</role>
</roles>
<timezone>-5</timezone>
</developer>
</developers>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -104,7 +120,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
Expand Down Expand Up @@ -175,6 +191,42 @@
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>

<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>

<extensions>true</extensions>

<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>

Expand All @@ -189,36 +241,9 @@
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
Expand All @@ -233,26 +258,4 @@
</build>
</profile>
</profiles>

<developers>
<developer>
<id>jon</id>
<name>Jon Chambers</name>
<email>[email protected]</email>
<url>https://github.com/jchambers</url>
<roles>
<role>developer</role>
</roles>
<timezone>-5</timezone>
</developer>
</developers>

<inceptionYear>2018</inceptionYear>
<url>https://github.com/jchambers/fast-uuid</url>

<scm>
<connection>scm:git:https://github.com/jchambers/fast-uuid.git</connection>
<developerConnection>scm:git:[email protected]:jchambers/fast-uuid.git</developerConnection>
<url>https://github.com/jchambers/fast-uuid</url>
</scm>
</project>

0 comments on commit 62e1733

Please sign in to comment.