Bootstrap 4 theme for FitNesse -
- Download release file: fitnesse-bootstrap-4-1.1.0.jar
- Put
fitnesse-bootstrap-4-1.1.0.jar
in theplugins
directory (or add it to the classpath) - Run FitNesse
The fitnesse-bootstrap-4 build can be executed via Gradle and Maven. Gradle and Maven wrappers are distributed with code.
Produced build will be a jar named fitnesse-bootstrap-4-x.y.z.jar
, available under target
directory for both Maven and Gradle mode.
Note: build version number instead of x.y.z
Execute gradle build
(or gradlew build
for Gradle wrapper)
Execute mvn package
(or mvnw package
for Maven wrapper)
To run FitNesse with Bootstrap 4 theme, fitnesse-bootstrap-4-x.y.z.jar
must be available in the plugins
directory or in the java classpath.
- If multiple theme plugins are available in the plugins directory (or in the classpath), another theme could override Bootstrap 4 theme.
- If theme name different from
bootstrap-4
is provided via configuration file (or VM option-DTheme=...
), the Bootstrap 4 them won't be loaded.
Place fitnesse-bootstrap-4-x.y.z.jar
into plugins directory and run/restart FitNesse.
Supposing that /path/to/fitnesse-bootstrap-4-x.y.z.jar
is the path to our theme, /path/to/fitnesse-standalone.jar
is
the path to FitNesse and we want to provide theme name via VM option -DTheme=bootstrap-4
, the following command can be
executed:
Unix-based systems
java -DTheme=bootstrap-4 -cp /path/to/fitnesse-bootstrap-4-x.y.z.jar:/path/to/fitnesse-standalone.jar fitnesseMain.FitNesseMain
Windows
java -DTheme=bootstrap-4 -cp /path/to/fitnesse-bootstrap-4-x.y.z.jar;/path/to/fitnesse-standalone.jar fitnesseMain.FitNesseMain