Jolira Testing Tools.
Tools that for automated testing of clients of web-services. This package includes a simple HTTP Server Simulator based on Jetty, which supports SSL..
Here is the list of declaration for testing-tools. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.jolira</groupId> <artifactId>testing-tools</artifactId> <version>1.2.2</version> </dependency>
If you think this Maven repository POM file listing for testing-tools is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The testing-tools-1.2.2 has 5 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 |
---|---|---|
JUnit | junit 4.8.1 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 1256 |
Log | slf4j-api 1.6.1 The slf4j API | 621 |
Log | slf4j-jdk14 1.6.1 The slf4j JDK14 binding | 60 |
Console | commons-cli 1.2 Commons CLI provides a simple API for presenting, processing and validating a command line interface. | 305 |
The following packages are defined in the testing-tools-1.2.2.jar
com.jolira.testing
Here is the content of the POM file.
<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> <artifactId>superpom</artifactId> <groupId>com.jolira</groupId> <version>1.0.9</version> </parent> <artifactId>testing-tools</artifactId> <version>1.2.2</version> <name>Jolira Testing Tools</name> <description>Tools that for automated testing of clients of web-services. This package includes a simple HTTP Server Simulator based on Jetty, which supports SSL. </description> <dependencies> <dependency> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty</artifactId> <version>6.1.24</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.6.1</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-jdk14</artifactId> <version>1.6.1</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> <version>1.2</version> <type>jar</type> <scope>compile</scope> </dependency> </dependencies> <scm> <connection>scm:svn:https://jolira-tools.googlecode.com/svn/superpom/tags/testing-tools-1.2.2</connection> <developerConnection>scm:svn:https://jolira-tools.googlecode.com/svn/superpom/tags/testing-tools-1.2.2</developerConnection> <url>https://jolira-tools.googlecode.com/svn/superpom/tags/testing-tools-1.2.2</url> </scm> </project>