gosdk-wrapper-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.igormaznitsa</groupId> <artifactId>gosdk-wrapper-maven-plugin</artifactId> <version>1.0.4</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>com.igormaznitsa</groupId> <artifactId>gosdk-wrapper-maven-plugin</artifactId> <version>1.0.4</version> <packaging>maven-plugin</packaging> <name>GoSDK wrapping maven plugin</name> <description>A maven plugin to download GoSDK and call its commands in Maven.</description> <url>https://github.com/raydac/gosdk-wrapper-maven-plugin/gosdk-wrapper-maven-plugin</url> <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> <developers> <developer> <id>raydac</id> <name>Igor Maznitsa</name> <email>rrg4400@gmail.com</email> <url>https://www.igormaznitsa.com</url> <roles> <role>developer</role> </roles> <timezone>+2</timezone> </developer> </developers> <prerequisites> <maven>3.8.1</maven> </prerequisites> <scm> <connection>scm:git:git://github.com/raydac/gosdk-wrapper-maven-plugin.git/gosdk-wrapper-maven-plugin</connection> <developerConnection>scm:git:git@github.com:raydac/gosdk-wrapper-maven-plugin.git/gosdk-wrapper-maven-plugin</developerConnection> <url>https://github.com/raydac/gosdk-wrapper-maven-plugin/gosdk-wrapper-maven-plugin</url> </scm> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-nop</artifactId> <version>1.7.36</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.8.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>3.8.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>3.8.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> <version>1.27.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.httpcomponents.client5</groupId> <artifactId>httpclient5</artifactId> <version>5.4.2</version> <scope>compile</scope> </dependency> </dependencies> </project>