rancher-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>dev.qiao</groupId> <artifactId>rancher-maven-plugin</artifactId> <version>1.2-RELEASE</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> <groupId>dev.qiao</groupId> <artifactId>rancher-maven-plugin</artifactId> <packaging>maven-plugin</packaging> <version>1.2-RELEASE</version> <name>rancher-maven-plugin</name> <description>use v3 api send put request to update deployment</description> <url>https://github.com/weihai4099/rancher-maven-plugin</url> <properties> <java.version>1.8</java.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.encoding>UTF-8</maven.compiler.encoding> <!--project--> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <!--plugin--> <maven-source-plugin.version>3.0.1</maven-source-plugin.version> <maven-clean-plugin.version>3.0.0</maven-clean-plugin.version> <maven-resources-plugin.version>3.0.2</maven-resources-plugin.version> <maven-surefire-plugin.version>2.20.1</maven-surefire-plugin.version> <maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version> <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> <maven.version>3.3.9</maven.version> </properties> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>3.0</version> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.4</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <version>2.2.1</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-compat</artifactId> <version>3.6.3</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>${maven.version}</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.8.5</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.7.0</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <artifactId>maven-plugin-plugin</artifactId> <version>3.6.0</version> </plugin> </plugins> </build> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/weihai4099/rancher-maven-plugin</url> <connection>scm:git:https://github.com/weihai4099/rancher-maven-plugin.git</connection> <developerConnection>scm:git:https://github.com/weihai4099/rancher-maven-plugin</developerConnection> </scm> <issueManagement> <system>Github</system> <url>https://github.com/weihai4099/rancher-maven-plugin/issues</url> </issueManagement> <developers> <developer> <name>weihai4099</name> <email>wang1010q@gmail.com</email> <url>https://github.com/weihai4099</url> </developer> </developers> <distributionManagement> <snapshotRepository> <id>maven-central-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <uniqueVersion>false</uniqueVersion> </snapshotRepository> <repository> <id>maven-central-releases</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> <uniqueVersion>true</uniqueVersion> </repository> </distributionManagement> <profiles> <profile> <id>default</id> <activation> <activeByDefault>true</activeByDefault> </activation> </profile> <profile> <id>release</id> <activation> <jdk>[1.8,)</jdk> </activation> <properties> <additionalparam>-Xdoclint:none</additionalparam> </properties> <build> <plugins> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.1.1</version> <configuration> <encoding>UTF-8</encoding> <charset>UTF-8</charset> <docencoding>UTF-8</docencoding> </configuration> <executions> <execution> <id>attach-javadocs</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <additionalJOption>-Xdoclint:none</additionalJOption> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>release</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>release</serverId>--> <!-- <nexusUrl>https://oss.sonatype.org/</nexusUrl>--> <!-- <autoReleaseAfterClose>true</autoReleaseAfterClose>--> <!-- </configuration>--> <!-- </plugin>--> </plugins> </build> </profile> </profiles> </project>