Overthere.
Remote file manipulation and process execution framework for Java.
Here is the list of declaration for overthere. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.xebialabs.overthere</groupId> <artifactId>overthere</artifactId> <version>2.4.3</version> </dependency>
If you think this Maven repository POM file listing for overthere is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:GPLv2 with XebiaLabs FLOSS License Exception
URL: https://github.com/xebialabs/overthere/blob/master/LICENSE.
The overthere-2.4.3 has 22 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Zip | jzlib 1.0.7 JZlib is a re-implementation of zlib in pure Java | 26 |
Network | jcifs 1.3.17 JCIFS is an Open Source client library that implements the CIFS/SMB networking protocol in 100% Java | 9 |
Testing | testng 5.14.10 TestNG is a testing framework. | 24 |
Data Structure | commons-codec 1.6 The codec package contains simple encoder and decoders for various formats such as Base64 and Hexadecimal. In addition to these widely used encoders and decoders, the codec package also maintains a collection of phonetic encoding utilities. | 114 |
Testing Mock | mockito-core 1.8.5 Mock objects library for java | 303 |
Security | bcprov-jdk15on 1.49 The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.5 to JDK 1.7. | 9 |
Http | httpcore 4.2.1 HttpComponents Core (blocking I/O) | 8 |
Testing | hamcrest-library 1.2.1 Hamcrest library of matcher implementations. | 46 |
Java Library | guava 16.0.1 Guava is a suite of core and expanded libraries that include utility classes, google's collections, io classes, and much much more. Guava has only one code dependency - javax.annotation, per the JSR-305 spec. | 146 |
Log | jcl-over-slf4j 1.6.3 JCL 1.1.1 implementation over SLF4J | 11 |
Log | logback-classic 1.0.6 logback-classic module | 19 |
XML | dom4j 1.6.1 dom4j: the flexible XML framework for Java | 343 |
Network | commons-net 2.0 A collection of network utilities and protocol implementations. | 8 |
Log | slf4j-api 1.6.3 The slf4j API | 95 |
Http | httpclient 4.2.1 HttpComponents Client (base module) | 106 |
XPath | jaxen 1.1.6 Jaxen is a universal Java XPath engine. | 5 |
Testing | hamcrest-core 1.2.1 This is the core API of hamcrest matcher framework to be used by third-party framework providers. This includes the a foundation set of matcher implementations for common operations. | 34 |
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://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.xebialabs.overthere</groupId> <artifactId>overthere</artifactId> <version>2.4.3</version> <name>Overthere</name> <description>Remote file manipulation and process execution framework for Java</description> <url>https://github.com/xebialabs/overthere</url> <inceptionYear>2011</inceptionYear> <licenses> <license> <name>GPLv2 with XebiaLabs FLOSS License Exception</name> <url>https://github.com/xebialabs/overthere/blob/master/LICENSE</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/xebialabs/overthere</url> </scm> <dependencies> <dependency> <groupId>com.jcraft</groupId> <artifactId>jzlib</artifactId> <version>1.0.7</version> <scope>runtime</scope> </dependency> <dependency> <groupId>jcifs</groupId> <artifactId>jcifs</artifactId> <version>1.3.17</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>bcprov-jdk16</artifactId> <groupId>org.bouncycastle</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>5.14.10</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.6</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>bcprov-jdk16</artifactId> <groupId>org.bouncycastle</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>1.8.5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk15on</artifactId> <version>1.49</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpcore</artifactId> <version>4.2.1</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>bcprov-jdk16</artifactId> <groupId>org.bouncycastle</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <version>1.2.1</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>16.0.1</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>bcprov-jdk16</artifactId> <groupId>org.bouncycastle</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <version>1.6.3</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>bcprov-jdk16</artifactId> <groupId>org.bouncycastle</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.0.6</version> <scope>test</scope> </dependency> <dependency> <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> <version>1.6.1</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>bcprov-jdk16</artifactId> <groupId>org.bouncycastle</groupId> </exclusion> <exclusion> <artifactId>xml-apis</artifactId> <groupId>xml-apis</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.uncommons</groupId> <artifactId>reportng</artifactId> <version>1.1.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>testng</artifactId> <groupId>org.testng</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>commons-net</groupId> <artifactId>commons-net</artifactId> <version>2.0</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>bcprov-jdk16</artifactId> <groupId>org.bouncycastle</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.6.3</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>bcprov-jdk16</artifactId> <groupId>org.bouncycastle</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.2.1</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>bcprov-jdk16</artifactId> <groupId>org.bouncycastle</groupId> </exclusion> <exclusion> <artifactId>commons-logging</artifactId> <groupId>commons-logging</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>net.schmizz</groupId> <artifactId>sshj</artifactId> <version>0.9.0</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>bcprov-jdk16</artifactId> <groupId>org.bouncycastle</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>nl.javadude.scannit</groupId> <artifactId>scannit</artifactId> <version>1.2.1</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>bcprov-jdk16</artifactId> <groupId>org.bouncycastle</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>jaxen</groupId> <artifactId>jaxen</artifactId> <version>1.1.6</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>xmlParserAPIs</artifactId> <groupId>xerces</groupId> </exclusion> <exclusion> <artifactId>bcprov-jdk16</artifactId> <groupId>org.bouncycastle</groupId> </exclusion> <exclusion> <artifactId>xml-apis</artifactId> <groupId>xml-apis</groupId> </exclusion> <exclusion> <artifactId>xalan</artifactId> <groupId>xalan</groupId> </exclusion> <exclusion> <artifactId>xercesImpl</artifactId> <groupId>xerces</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.xebialabs.cloud</groupId> <artifactId>overcast</artifactId> <version>1.2.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>overthere</artifactId> <groupId>com.xebialabs.overthere</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>nl.javadude.assumeng</groupId> <artifactId>assumeng</artifactId> <version>1.2.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <version>1.2.1</version> <scope>test</scope> </dependency> </dependencies> </project>