From 25faa54a5940185f01c48bdbc5b7e3f824e71846 Mon Sep 17 00:00:00 2001 From: Nathan Merz Date: Fri, 20 Nov 2020 14:35:25 -0500 Subject: [PATCH] Client-Facing Lambdas overview --- Lambdas/Lists/README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Lambdas/Lists/README.md diff --git a/Lambdas/Lists/README.md b/Lambdas/Lists/README.md new file mode 100644 index 0000000..aabd681 --- /dev/null +++ b/Lambdas/Lists/README.md @@ -0,0 +1,15 @@ +# Client-Facing Lambdas +Each subfolder (except `target`) is a module. + +NOTE: `src` contains the Core module + +## Building +- The pom.xml has dependency information for all the Modules combined and all these dependencies are currently built into the Core module. +- Other build configurations are done in IntelliJ with each module having a build definition. + - Each module relies the (extracted) output of Core.jar being included in its build. + - Other modules may be included as applicable. + - Some modules specifically include their own dependencies, but this is not strictly necessary since everything is (inefficiently) bundled into Core. + +## Inclusion in Git +- Compiled output should never be included in git. +- IntelliJ's build files may not be properly included (or may just be hard to import.) Copying the folder directly between machines works.