FitNesse.
The fully integrated standalone wiki, and acceptance testing framework..
Here is the list of declaration for fitnesse. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.fitnesse</groupId> <artifactId>fitnesse</artifactId> <version>20121220</version> </dependency>
If you think this Maven repository POM file listing for fitnesse is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:Common Public License version 1.0
URL: http://www.opensource.org/licenses/cpl1.0.
The fitnesse-20121220 has 6 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 |
---|---|---|
Web Framework | htmlparser 2.1 HTML Parser is the high level syntactical analyzer. | 6 |
Template | velocity 1.7 Apache Velocity is a general purpose template engine. | 140 |
JSON | json 20090211 JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999. JSON is a te... | 157 |
Build | ant 1.7.1 Apache Ant | 137 |
Testing Mock | mockito-all 1.7 Mock objects library for java | 31 |
JUnit | junit 4.10 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. | 1957 |
The following packages are defined in the fitnesse-20121220.jar
eg eg.bowling eg.bowling.fixtures eg.employeePayroll fit fit.decorator fit.decorator.exceptions fit.decorator.performance fit.decorator.util fit.exception fit.testFxtr fitnesse fitnesse.authentication fitnesse.components fitnesse.fixtures fitnesse.html fitnesse.http fitnesse.junit fitnesse.responders fitnesse.responders.editing fitnesse.responders.files fitnesse.responders.refactoring fitnesse.responders.run fitnesse.responders.run.formatters fitnesse.responders.run.slimResponder fitnesse.responders.search fitnesse.responders.templateUtilities fitnesse.responders.testHistory fitnesse.responders.versions fitnesse.runner fitnesse.schedule fitnesse.slim fitnesse.slim.converters fitnesse.slim.fixtureInteraction fitnesse.slim.test fitnesse.slim.test.library fitnesse.slim.test.testSlimInThisPackageShouldNotBeTheOneUsed fitnesse.slimTables fitnesse.socketservice fitnesse.testutil fitnesse.tools fitnesse.updates fitnesse.wiki fitnesse.wiki.cmSystems fitnesse.wiki.zip fitnesse.wikitext fitnesse.wikitext.parser fitnesse.wikitext.test fitnesseMain fitnesseMain.ant org.fitnesse.triviaGameExample org.fitnesse.triviaGameExample.fitnesseFixtures util
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> <groupId>org.fitnesse</groupId> <artifactId>fitnesse</artifactId> <packaging>jar</packaging> <version>20121220</version> <name>FitNesse</name> <url>http://fitnesse.org</url> <description> The fully integrated standalone wiki, and acceptance testing framework. </description> <licenses> <license> <name>Common Public License version 1.0</name> <url>http://www.opensource.org/licenses/cpl1.0</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git://github.com/unclebob/fitnesse.git</connection> <developerConnection>scm:git:git@github.com:unclebob/fitnesse.git</developerConnection> <url>scm:git:http://github.com/unclebob/fitnesse</url> </scm> <dependencies> <dependency> <groupId>org.htmlparser</groupId> <artifactId>htmlparser</artifactId> <version>2.1</version> <scope>runtime</scope> <exclusions> <exclusion> <groupId>com.sun</groupId> <artifactId>tools</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity</artifactId> <version>1.7</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> <version>20090211</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.ant</groupId> <artifactId>ant</artifactId> <version>1.7.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.7</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> </dependencies> </project>