releaser-test
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>dev.nu</groupId>
<artifactId>releaser-test</artifactId>
<version>0.0.3</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) Metadata Partners, LLC.
All rights reserved.
See LICENSE at root of the distribution for
license details.
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0">
<modelVersion>4.0.0</modelVersion>
<groupId>dev.nu</groupId>
<artifactId>releaser-test</artifactId>
<version>0.0.3</version>
<packaging>jar</packaging>
<name>release-test</name>
<description>Artifact to test maven_releaser</description>
<url>http://www.cognitect.com</url>
<licenses>
<license>
<name>Closed Source</name>
<url>http://www.example.com</url>
</license>
</licenses>
<developers>
<developer>
<name>Cognitect</name>
<email>cognitect@cognitect</email>
</developer>
</developers>
<scm>
<connection>git</connection>
<developerConnection>git</developerConnection>
<url>http://www.cognitect.com</url>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.7</version>
<configuration>
<useAgent>true</useAgent>
<gpgArguments>
<arg>--batch</arg>
</gpgArguments>
</configuration>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.7.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central-cognitect</publishingServerId>
<checksums>required</checksums>
<autoPublish>${central.autoPublish}</autoPublish>
<waitUntil>published</waitUntil>
</configuration>
</plugin>
</plugins>
</build>
</project>