oj-ssh
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>uk.co.rgordon</groupId> <artifactId>oj-ssh</artifactId> <version>1.6.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/xsd/maven-4.0.0.xsd"> <parent> <artifactId>oj-parent</artifactId> <groupId>uk.co.rgordon</groupId> <version>1.6.0</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>oj-ssh</artifactId> <name>Oddjob SSH</name> <description>Oddjob SSH Oddball</description> <url>http://rgordon.co.uk/oddjob</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>rob</id> <name>Rob</name> <email>contact@rgordon.co.uk</email> </developer> </developers> <scm> <url>https://github.com/robjg/oj-ssh</url> <connection>scm:git:git://github.com/robjg/oj-ssh.git</connection> </scm> <profiles> <profile> <id>dev</id> <activation> <activeByDefault>true</activeByDefault> </activation> <properties> <skip.integration.tests>true</skip.integration.tests> <skipTests>false</skipTests> </properties> </profile> <profile> <id>integration-test</id> <properties> <skip.integration.tests>false</skip.integration.tests> <skipTests>true</skipTests> </properties> </profile> </profiles> <properties> <integration.test.tag>IntegrationTest</integration.test.tag> <apache-sshd.version>2.5.1</apache-sshd.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.apache.sshd</groupId> <artifactId>sshd</artifactId> <version>${apache-sshd.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>uk.co.rgordon</groupId> <artifactId>oddjob</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.sshd</groupId> <artifactId>sshd-core</artifactId> <version>${apache-sshd.version}</version> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.sshd</groupId> <artifactId>sshd-scp</artifactId> <version>${apache-sshd.version}</version> </dependency> <dependency> <groupId>org.apache.sshd</groupId> <artifactId>sshd-putty</artifactId> <version>${apache-sshd.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-launcher</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>uk.co.rgordon</groupId> <artifactId>arooa</artifactId> <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcpg-jdk15on</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>3.2.0</version> <configuration> <descriptors> <descriptor>src/assembly/oddball.xml</descriptor> </descriptors> <finalName>oddball</finalName> <appendAssemblyId>false</appendAssemblyId> <attach>false</attach> </configuration> <executions> <execution> <id>oddball</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skipTests>${skipTests}</skipTests> <excludedGroups>${integration.test.tag}</excludedGroups> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <configuration> <skipTests>${skip.integration.tests}</skipTests> <groups>${integration.test.tag}</groups> <includes> <include>**/*Test.java</include> </includes> </configuration> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>