2
0
Fork 0
mirror of https://github.com/ethauvin/rife2-hello.git synced 2025-04-25 15:37:10 -07:00

Updated readme

This commit is contained in:
Geert Bevin 2023-02-12 11:49:33 -05:00
parent 217c35ec76
commit b19c8afb41
2 changed files with 12 additions and 8 deletions

View file

@ -12,6 +12,12 @@ in a very iterative, intuitive and rewarding way.
For all things RIFE2, head on to the project website: For all things RIFE2, head on to the project website:
[https://rife2.com](https://rife2.com) [https://rife2.com](https://rife2.com)
## Run the tests
```bash
./gradlew clean test
```
## Running the server ## Running the server
```bash ```bash

View file

@ -1,10 +1,5 @@
/* import org.gradle.api.tasks.testing.logging.TestExceptionFormat
* This file was generated by the Gradle 'init' task. import org.gradle.api.tasks.testing.logging.TestLogEvent
*
* This generated file contains a sample Java application project to get you started.
* For more details take a look at the 'Building Java & JVM projects' chapter in the Gradle
* User Manual available at https://docs.gradle.org/7.6/userguide/building_java_projects.html
*/
plugins { plugins {
// Apply the application plugin to add support for building a CLI application in Java. // Apply the application plugin to add support for building a CLI application in Java.
@ -49,8 +44,11 @@ application {
tasks { tasks {
named<Test>("test") { named<Test>("test") {
// Use JUnit Platform for unit tests.
useJUnitPlatform() useJUnitPlatform()
testLogging {
exceptionFormat = TestExceptionFormat.FULL
events = setOf(TestLogEvent.PASSED, TestLogEvent.SKIPPED, TestLogEvent.FAILED)
}
} }
// Pre-compile the RIFE2 templates to bytecode for deployment // Pre-compile the RIFE2 templates to bytecode for deployment