sshutil
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.paulushcgcj</groupId> <artifactId>sshutil</artifactId> <version>1.0.1</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>io.github.paulushcgcj</groupId> <artifactId>sshutil</artifactId> <version>1.0.1</version> <name>SSH Utils Library</name> <description>This lib is a set of utils to help you during ssh connections</description> <url>https://paulushcgcj.github.io/</url> <organization> <name>Paulo Gomes da Cruz Junior</name> <url>https://paulushcgcj.github.io/</url> </organization> <licenses> <license> <name>GNU GENERAL PUBLIC LICENSE, Version 3</name> <url>https://raw.githubusercontent.com/paulushcgcj/sshutil/master/LICENSE.md</url> </license> </licenses> <developers> <developer> <name>Paulo Gomes da Cruz Junior</name> <email>paulushc@gmail.com</email> <organization>PaulusHC</organization> <organizationUrl>https://paulushcgcj.github.io/</organizationUrl> </developer> </developers> <properties> <maven.version>3.3.9</maven.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>1.8</java.version> <jdk.version>1.8</jdk.version> <build.profile.id>dev</build.profile.id> <jacoco.it.execution.data.file>${project.build.directory}/coverage-reports/jacoco-it.exec </jacoco.it.execution.data.file> <jacoco.ut.execution.data.file>${project.build.directory}/coverage-reports/jacoco-ut.exec </jacoco.ut.execution.data.file> <skip.integration.tests>true</skip.integration.tests> <skip.unit.tests>false</skip.unit.tests> </properties> <dependencies> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <scope>provided</scope> <version>1.18.4</version> </dependency> <dependency> <groupId>com.jcraft</groupId> <artifactId>jsch</artifactId> <version>0.1.55</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <source>8</source> <target>8</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>3.0.0</version> <dependencies> <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> <version>8.18</version> </dependency> </dependencies> <configuration> <configLocation>.mvn/google_checks.xml</configLocation> <encoding>UTF-8</encoding> <consoleOutput>true</consoleOutput> <failsOnError>true</failsOnError> <linkXRef>false</linkXRef> </configuration> <executions> <execution> <id>validate</id> <phase>validate</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>2.22.1</version> <executions> <execution> <id>integration-tests</id> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> <configuration> <argLine>-Xmx1024m -XX:MaxPermSize=256m</argLine> <forkCount>0</forkCount> <skipTests>${skip.integration.tests}</skipTests> <includes> <include>**/*IntegrationTest.java</include> </includes> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.2</version> <configuration> <argLine>-Xmx1024m -XX:MaxPermSize=256m</argLine> <skipTests>${skip.unit.tests}</skipTests> <forkCount>0</forkCount> <useSystemClassLoader>false</useSystemClassLoader> <excludes> <exclude>**/*IntegrationTest.java</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.3</version> <executions> <execution> <id>pre-integration-test</id> <phase>pre-integration-test</phase> <goals> <goal>prepare-agent</goal> </goals> <configuration> <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile> <propertyName>failsafeArgLine</propertyName> </configuration> </execution> <execution> <id>post-integration-test</id> <phase>post-integration-test</phase> <goals> <goal>report</goal> </goals> <configuration> <dataFile>${project.build.directory}/coverage-reports/jacoco-it.exec</dataFile> <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.1.0</version> <configuration> <source>8</source> <doctitle>Javadoc Documentation for ${project.name} ${project.version} </doctitle> <windowtitle>${project.name} ${project.version} </windowtitle> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <keyname>${gpg.keyname}</keyname> <passphraseServerId>${gpg.keyname}</passphraseServerId> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.sonarsource.scanner.maven</groupId> <artifactId>sonar-maven-plugin</artifactId> <version>3.4.0.905</version> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>disable-java8-doclint</id> <activation> <jdk>[1.8,1.12)</jdk> </activation> <properties> <additionalparam>-Xdoclint:none</additionalparam> </properties> </profile> <profile> <id>all-tests</id> <properties> <build.profile.id>all-tests</build.profile.id> <skip.integration.tests>false</skip.integration.tests> <skip.unit.tests>false</skip.unit.tests> </properties> </profile> <profile> <id>dev</id> </profile> <profile> <id>integration-test</id> <properties> <build.profile.id>integration-test</build.profile.id> <skip.integration.tests>false</skip.integration.tests> <skip.unit.tests>true</skip.unit.tests> </properties> </profile> </profiles> <scm> <connection>scm:git:${project.scm.url}</connection> <developerConnection>scm:git:${project.scm.url}</developerConnection> <url>git@github.com:paulushcgcj/sshutil.git</url> </scm> <distributionManagement> <repository> <id>bintray-paulushc-io.github.paulushcgcj</id> <name>paulushc-io.github.paulushcgcj</name> <url>https://api.bintray.com/maven/paulushc/io.github.paulushcgcj/sshutil/;publish=1</url> </repository> </distributionManagement> </project>