https://github.com/sitture/fitnesse-quickstart
An archetype that can be used to generate a Maven based FitNesse project.
https://github.com/sitture/fitnesse-quickstart
archetype example-project fitnesse fitnesse-quickstart hacktoberfest maven-archetype quickstart
Last synced: 8 months ago
JSON representation
An archetype that can be used to generate a Maven based FitNesse project.
- Host: GitHub
- URL: https://github.com/sitture/fitnesse-quickstart
- Owner: sitture
- License: apache-2.0
- Created: 2017-02-19T21:13:46.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-11-26T20:39:14.000Z (over 1 year ago)
- Last Synced: 2025-10-20T15:57:04.284Z (8 months ago)
- Topics: archetype, example-project, fitnesse, fitnesse-quickstart, hacktoberfest, maven-archetype, quickstart
- Language: Java
- Homepage:
- Size: 58.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# fitnesse-quickstart
An archetype that can be used to generate a Maven based FitNesse project.
[](https://travis-ci.org/sitture/fitnesse-quickstart) [](https://maven-badges.herokuapp.com/maven-central/com.sitture/fitnesse-quickstart) [](https://raw.githubusercontent.com/sitture/fitnesse-quickstart/master/LICENSE)
# Usage
To generate the archetype, run:
__Batch__
```bash
mvn archetype:generate -DarchetypeGroupId=com.sitture -DarchetypeArtifactId=fitnesse-quickstart
```
__Interactive__
```bash
cd x #where x is your "workspace" directory
mvn archetype:generate
#filter by e.g. "fitnesse", or com.sitture, which is {groupId}:{artifactId}
#input artifactId etc.
```
The archetype will create a directory named after the 'artifactId' you supplied, which will contain the generated project.
## Starting FitNesse
```bash
# cd into your generated project directory
mvn clean test
```
By default, fitnesse will start running on port 8082 at `http://127.0.0.1:8082`. To run it on a different port:
```bash
mvn clean test -Dport=9090
```
## Running a FitNesse Suite (JUnit)
You can run the following to run a suite headlessly.
```bash
mvn clean test-compile failsafe:integration-test
```
By default, fitnesse will run `FitNesse.SuiteAcceptanceTests` suite.
To run a different suite:
```bash
mvn clean test-compile failsafe:integration-test -DsuitePath=FitNesse.SuiteAcceptanceTests
```
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request