<?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>

	<groupId>com.kiwigrid</groupId>
	<artifactId>helm-maven-plugin</artifactId>
	<version>5.12</version>
	<packaging>pom</packaging>

	<name>${project.groupId}:${project.artifactId}</name>
	<description>
		A plugin for executing HELM (https://docs.helm.sh).
		HELM itself will be downloaded during build or local binary can be provided.
	</description>
	<url>https://github.com/kiwigrid/helm-maven-plugin</url>
	<organization>
		<name>Kiwigrid GmbH</name>
		<url>https://www.kiwigrid.com</url>
	</organization>
	<licenses>
		<license>
			<name>MIT License</name>
			<url>http://opensource.org/licenses/MIT</url>
		</license>
	</licenses>

	<developers>
		<developer>
			<name>Fabian Schlegel</name>
			<email>fabian.schlegel@grayc.de</email>
		</developer>
	</developers>

	<scm>
		<url>https://github.com/kokuwaio/helm-maven-plugin</url>
		<connection>scm:git:https://github.com/kokuwaio/helm-maven-plugin.git</connection>
		<developerConnection>scm:git:https://github.com/kokuwaio/helm-maven-plugin.git</developerConnection>
		<tag>helm-maven-plugin-5.12</tag>
	</scm>
	<distributionManagement>
		<relocation>
			<groupId>io.kokuwa.maven</groupId>
		</relocation>
		<repository>
			<id>sonatype-nexus</id>
			<name>Nexus Release Repository</name>
			<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
		</repository>
	</distributionManagement>

	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-gpg-plugin</artifactId>
				<version>1.6</version>
				<executions>
					<execution>
						<goals>
							<goal>sign</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
</project>
