helm-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.kokuwa.maven</groupId> <artifactId>helm-maven-plugin</artifactId> <version>6.17.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>io.kokuwa.maven</groupId> <artifactId>helm-maven-plugin</artifactId> <version>6.17.0</version> <packaging>maven-plugin</packaging> <name>Helm Maven Plugin</name> <description>A plugin for executing HELM (https://docs.helm.sh).</description> <url>https://github.com/kokuwaio/helm-maven-plugin</url> <licenses> <license> <name>MIT</name> <url>https://opensource.org/license/MIT</url> </license> </licenses> <developers> <developer> <id>sschnabe</id> <name>Stephan Schnabel</name> <email>stephan@grayc.de</email> <url>https://github.com/sschnabe</url> <organization>GrayC GmbH</organization> <organizationUrl>https://grayc.de</organizationUrl> <roles> <role>Lead Developer</role> </roles> <timezone>Europe/Berlin</timezone> </developer> <developer> <id>fabian-schlegel</id> <name>Fabian Schlegel</name> <email>fabian.schlegel@grayc.de</email> <url>https://github.com/fabian-schlegel</url> <organization>GrayC GmbH</organization> <organizationUrl>https://grayc.de</organizationUrl> <roles> <role>Developer</role> </roles> <timezone>Europe/Berlin</timezone> </developer> </developers> <prerequisites> <maven>3.2.5</maven> </prerequisites> <scm> <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>6.17.0</tag> <url>https://github.com/kokuwaio/helm-maven-plugin</url> </scm> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>3.2.5</version> <scope>provided</scope> <exclusions> <exclusion> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> </exclusion> <exclusion> <groupId>org.eclipse.sisu</groupId> <artifactId>org.eclipse.sisu.plexus</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-settings</artifactId> <version>3.2.5</version> <scope>provided</scope> <exclusions> <exclusion> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>3.2.5</version> <scope>provided</scope> <exclusions> <exclusion> <groupId>org.sonatype.plexus</groupId> <artifactId>plexus-sec-dispatcher</artifactId> </exclusion> <exclusion> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.15.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-sec-dispatcher</artifactId> <version>2.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> <version>1.27.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.36</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.18.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-yaml</artifactId> <version>2.18.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jsr310</artifactId> <version>2.18.2</version> <scope>compile</scope> </dependency> </dependencies> </project>