client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.oneandone.stool</groupId>
<artifactId>client</artifactId>
<version>6.0.0</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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>net.oneandone.stool</groupId>
<artifactId>stool</artifactId>
<version>6.0.0</version>
</parent>
<name>Stool Client</name>
<artifactId>client</artifactId>
<packaging>jar</packaging>
<description>Stool client to control the server from the command line and build images.</description>
<dependencies>
<dependency>
<groupId>net.oneandone.stool</groupId>
<artifactId>docker</artifactId>
<version>6.0.0</version>
</dependency>
<dependency>
<groupId>net.oneandone</groupId>
<artifactId>sushi</artifactId>
<version>${sushi.version}</version>
</dependency>
<dependency>
<groupId>net.oneandone</groupId>
<artifactId>inline</artifactId>
<version>1.2.0</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${gson.version}</version>
</dependency>
<dependency>
<groupId>com.googlecode.lanterna</groupId>
<artifactId>lanterna</artifactId>
<version>3.0.1</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-yaml</artifactId>
<version>2.11.1</version>
</dependency>
<dependency><!-- TODO -->
<groupId>io.fabric8</groupId>
<artifactId>openshift-client</artifactId>
<version>4.10.2</version>
</dependency>
<!-- logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.30</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>1.2.3</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.3</version>
</dependency>
<!-- test -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>false</filtering>
</resource>
<resource>
<directory>src/main/filtered-resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>net.oneandone.maven.plugins</groupId>
<artifactId>application</artifactId>
<version>1.6.3</version>
<executions>
<execution>
<id>stool-client</id>
<configuration>
<!-- JavaSetup is used as the setup tool *and* as the Jar file for the resulting stool installation. -->
<path>$PATH</path>
<options>"-Djava.awt.headless=true --illegal-access=deny"</options>
<name>sc</name>
<main>net.oneandone.stool.client.cli.Main</main>
<equal>com/jcraft/jsch/agentproxy/*.class, org/aopalliance/**/*, META-INF/ASL2.0</equal>
<overwrite>manifest.vm, ValidationMessages.properties, META-INF/services/com.fasterxml.jackson.databind.Module, schema/*-schema.json,
META-INF/services/io.fabric8.kubernetes.client.*,
META-INF/jandex.idx,
META-INF/services/io.fabric8.kubernetes.api.KubernetesResourceMappingProvider,
META-INF/versions/9/javax/xml/bind/ModuleUtil.class, javax/xml/bind/**/*</overwrite><!-- TODO -->
<remove>META-INF/maven/**/*,
module-info.class, META-INF/pominfo.properties, META-INF/wsd.properties, META-INF/DEPENDENCIES, META-INF/LICENSE*, META-INF/NOTICE*,
META-INF/license.txt, META-INF/notice.txt, overview.html, META-INF/DUMMY.SF, META-INF/DUMMY.DSA, about.html,
readme.txt, changelog.txt, notice.txt, license.txt, licenses/*
</remove>
<concat>META-INF/services/com.fasterxml.jackson.core.ObjectCodec,
META-INF/services/com.fasterxml.jackson.core.JsonFactory,
META-INF/sisu/javax.inject.Named, META-INF/services/org.apache.lucene.codecs.PostingsFormat</concat>
<attach>true</attach>
</configuration>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>net.oneandone.maven.plugins</groupId>
<artifactId>active-markdown</artifactId>
<version>1.0.1</version>
<configuration>
<man>true</man>
<mandir>${project.build.directory}/classes/templates/man/man1</mandir>
</configuration>
<executions>
<execution>
<goals><goal>run</goal></goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>