central-custom-publishing-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>de.eitco.cicd</groupId>
<artifactId>central-custom-publishing-maven-plugin</artifactId>
<version>0.0.2</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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>
<parent>
<groupId>de.eitco.cicd</groupId>
<artifactId>eitco-oss-parent</artifactId>
<version>0.0.14</version>
</parent>
<groupId>de.eitco.cicd</groupId>
<artifactId>central-custom-publishing-maven-plugin</artifactId>
<version>0.0.2</version>
<packaging>maven-plugin</packaging>
<description>
This maven plugin provides single steps of the central publishing process using the underlying api of the
central publishing maven plugin.
</description>
<developers>
<developer>
<name>Jan Schwarz</name>
<email>jschwarz@eitco.de</email>
</developer>
</developers>
<scm>
<url>https://github.com/eitco/central-custom-publishing-maven-plugin.git</url>
<connection>scm:git:https://github.com/eitco/central-custom-publishing-maven-plugin.git</connection>
<developerConnection>scm:git:https://github.com/eitco/central-custom-publishing-maven-plugin.git</developerConnection>
<tag>0.0.2</tag>
</scm>
<dependencies>
<dependency>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.4.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-compat</artifactId>
<version>3.8.1</version>
</dependency>
<dependency>
<groupId>net.lingala.zip4j</groupId>
<artifactId>zip4j</artifactId>
<version>2.11.5</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-release-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>