From 71fb85bd929ee925ec74dd57bcec50318d966aeb Mon Sep 17 00:00:00 2001 From: Joshua Palis Date: Fri, 12 Jan 2024 22:47:36 +0000 Subject: [PATCH] updating DEVELOPER_GUIDE Signed-off-by: Joshua Palis --- DEVELOPER_GUIDE.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/DEVELOPER_GUIDE.md b/DEVELOPER_GUIDE.md index 5e68587e2..16719a890 100644 --- a/DEVELOPER_GUIDE.md +++ b/DEVELOPER_GUIDE.md @@ -37,8 +37,11 @@ This package uses the [Gradle](https://docs.gradle.org/current/userguide/usergui 1. `./gradlew check` builds and tests. 2. `./gradlew :run` installs and runs ML-Commons and Flow Framework Plugins into a local cluster -3. `./gradlew spotlessApply` formats code. And/or import formatting rules in [formatterConfig.xml](formatter/formatterConfig.xml) with IDE. -4. `./gradlew test` to run the complete test suite. +3. `./gradlew run -Dsecurity.enabled=true` installs, configures and runs ML-Commons, Flow Framework and Security Plugins into a local cluster +4. `./gradlew spotlessApply` formats code. And/or import formatting rules in [formatterConfig.xml](formatter/formatterConfig.xml) with IDE. +5. `./gradlew test` to run the complete test suite. +6. `./gradlew integTest` to run only the non-security enabled integration tests +7. `./gradlew integTest -Dsecurity.enabled=true` to run only the security enabled integration tests #### Building from the IDE