=========================
Notes on running the demo
=========================

Eclipse project with built-in JUnit 5 library:

Straight Java project -> run tests in Eclipse as normal

-----

Eclipse project with Maven Dependencies (and NO JUnit 5 library):

Need junit-jupiter-migrationsupport dependency, as well as junit-jupiter-api (which you always need)

In the Demo02.1 directory, execute

> mvn test

-----

Console Launcher:

junit-jupiter-migrationsupport JAR is missing from the Console Launcher standalone JAR (likely a bug).

Just add it to the classpath and it runs fine.

In the workspace directory, execute

> junit-console --class-path ..\Software\junit-5.1.0\lib\junit-jupiter-migrationsupport-5.1.0.jar;Demo02.1_JUnit4RulesMigration\bin --scan-class-path