stork-cli
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.fizzed</groupId>
<artifactId>stork-cli</artifactId>
<version>3.1.3</version>
</dependency><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.fizzed</groupId>
<artifactId>stork-cli</artifactId>
<packaging>jar</packaging>
<name>stork-cli</name>
<parent>
<groupId>com.fizzed</groupId>
<artifactId>stork</artifactId>
<version>3.1.3</version>
</parent>
<build>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<!-- eating our own dog food :-) -->
<plugin>
<groupId>com.fizzed</groupId>
<artifactId>stork-maven-plugin</artifactId>
<version>${project.version}</version>
<executions>
<execution>
<id>stork-launcher</id>
<phase>package</phase>
<goals>
<goal>launcher</goal>
</goals>
</execution>
<execution>
<id>stork-assembly</id>
<phase>package</phase>
<goals>
<goal>assembly</goal>
</goals>
<configuration>
<finalName>stork-${project.version}</finalName>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<!-- compile -->
<dependency>
<groupId>com.fizzed</groupId>
<artifactId>stork-launcher</artifactId>
</dependency>
<dependency>
<groupId>com.fizzed</groupId>
<artifactId>stork-deploy</artifactId>
</dependency>
<!-- other blaze dependencies in provided scope we need here -->
<dependency>
<groupId>com.fizzed</groupId>
<artifactId>blaze-core</artifactId>
<scope>runtime</scope>
<exclusions>
<exclusion>
<groupId>org.apache.ivy</groupId>
<artifactId>ivy</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.fizzed</groupId>
<artifactId>blaze-ssh</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.fizzed</groupId>
<artifactId>blaze-vagrant</artifactId>
<scope>runtime</scope>
</dependency>
<!-- usually test but we need to include it in the cli -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>