-
Notifications
You must be signed in to change notification settings - Fork 16
How to install
Depending on your environment you can use the gradle wrapper gradlew
and gradlew.bat
or install gradle globally on your machine.
For for convenience we will use gradle
in the rest of the documentation as command name.
So for example gradle build
mean:
-
Windows wrapper:
gradlew.bat build
-
Linux wrapper:
./gradlew build
-
Linux without wrapper:
gradle build
If you want to use your own build of livingdocs in other projects on your machine, you can publish the artifacts to your local maven repository by running gradle publishToMavenLocal
.
After this step the livingdocs Test Framework can be used in other project by importing them with the group id org.livingdoc
and the artifact id matching the project name.
-
File > Open
-
Select View "Project Files"
-
Right click
build.gradle.kts
> Import Gradle Project
Running a project with LivingDoc is documented in the Demo-Project section