Skip to content

Commit

Permalink
More pom changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rctcwyvrn committed May 15, 2020
1 parent 0a0f12c commit efc8876
Showing 1 changed file with 42 additions and 42 deletions.
84 changes: 42 additions & 42 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,21 @@
<maven.compiler.source>1.11</maven.compiler.source>
<maven.compiler.target>1.11</maven.compiler.target>
</properties>
<name>blake3</name>
<description>An unoptimized BLAKE3 implementation in Java</description>
<licenses>
<license>
<name>MIT</name>
<url>https://raw.githubusercontent.com/rctcwyvrn/blake3/master/LICENSE</url>
</license>
</licenses>
<developers>
<developer>
<id>rctcwyvrn</id>
<name>Lily Lin</name>
<url>rctcwyvrn.github.io</url>
</developer>
</developers>

<build>
<pluginManagement>
Expand All @@ -30,17 +45,6 @@
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
Expand Down Expand Up @@ -91,6 +95,33 @@
</execution>
</executions>
</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.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>

Expand Down Expand Up @@ -126,35 +157,4 @@
<url>https://github.com/rctcwyvrn/blake3</url>
<tag>blake3-1.0</tag>
</scm>

<profiles>
<!-- GPG Signature on release -->
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<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>
</plugins>
</build>
</profile>
</profiles>
</project>

0 comments on commit efc8876

Please sign in to comment.