2
0
Fork 0
mirror of https://github.com/ethauvin/rife2-hello.git synced 2025-04-25 07:27:12 -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:
[https://rife2.com](https://rife2.com)
## Run the tests
```bash
./gradlew clean test
```
## Running the server
```bash

View file

@ -1,10 +1,5 @@
/*
* This file was generated by the Gradle 'init' task.
*
* 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
*/
import org.gradle.api.tasks.testing.logging.TestExceptionFormat
import org.gradle.api.tasks.testing.logging.TestLogEvent
plugins {
// Apply the application plugin to add support for building a CLI application in Java.
@ -49,8 +44,11 @@ application {
tasks {
named<Test>("test") {
// Use JUnit Platform for unit tests.
useJUnitPlatform()
testLogging {
exceptionFormat = TestExceptionFormat.FULL
events = setOf(TestLogEvent.PASSED, TestLogEvent.SKIPPED, TestLogEvent.FAILED)
}
}
// Pre-compile the RIFE2 templates to bytecode for deployment