This project contains an empty project that can be used as a starting point for a Concordion test project.
It includes Gradle and Maven files to manage its dependencies, build and run the Concordion tests. If you are unsure which to use, choose Gradle since the project contains a Gradle wrapper so you do not have to download and install Gradle yourself.
Note that since there aren't currently any tests in this project, when you run the tests nothing will happen. You'll have to write some first!
- On Unix-based systems, open a terminal window,
cd
to this folder and run./gradlew test
. - On Windows-based systems, open a command prompt,
cd
to this folder and run.\gradlew test
.
This will download any required dependencies, build the project and run the tests.
You'll need to install Maven if you don't already have it installed.
- On Unix-based systems, open a terminal window,
cd
to this folder and runmvn test
. - On Windows-based systems, open a command prompt,
cd
to this folder and runmvn test
.
This will download any required dependencies, build the project and run the tests.
Most Java IDEs support Gradle and Maven, or have plugins that support them. Importing this project as either Gradle or Maven should download the required jars and set up the project for you.
If using Gradle, you can delete the Maven pom.xml
file.
If using Maven, you can delete the Gradle files gradlew
, gradlew.bat
, build.gradle
and foldersgradlew
, .gradle
.
The src/test/java
and src/test/resources
folders contain a .deleteme
file that is a placeholder so that the directory containing it can be committed to version control. Once you have added a test fixture to src/test/java
and a specification to src/test/resources
you can safely delete these files.
The file .travis.yml
is included for the Travis CI build and can safely be deleted.