diff options
author | Bruno Sakoto <bruno.sakoto@bell.ca> | 2021-02-17 17:26:33 -0500 |
---|---|---|
committer | Bruno Sakoto <bruno.sakoto@bell.ca> | 2021-02-23 11:03:06 -0500 |
commit | 4a56debaac0d6d7a073ae24f1d8099879f121ba1 (patch) | |
tree | a70f55a0b5ec6165f850a4cd543132377c637e4a /.gitignore | |
parent | 696f72a8565963703f3d539d6367a31fd449d514 (diff) |
Create application skeleton
This skeleton is used to start validating cps temporal jenkins jobs.
Issue-ID: CPS-190
Change-Id: Iccbd4f58eaf2bd3ffaf668f4471b94581425c484
Signed-off-by: Bruno Sakoto <bruno.sakoto@bell.ca>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6609c05 --- /dev/null +++ b/.gitignore @@ -0,0 +1,32 @@ +target/ +!**/src/main/** +!**/src/test/** + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +build/ + +### VS Code ### +.vscode/ + +### MAC OS ### +.DS_Store
\ No newline at end of file |