From 2301627e59be3468eab84aa243f18189af1fd4fe Mon Sep 17 00:00:00 2001 From: "Timoney, Dan (dt5972)" Date: Fri, 15 Feb 2019 13:58:24 -0500 Subject: Fix sonar build Sonar build on ccsdk/apps is failing because one of the submodules (components/model-catatlog/proto-definition) does not have the standard maven src/main and src/test directories. Adding these directories fixes sonar build (they need to contain a file - in this case a README - otherwise git will not add the empty directory) Change-Id: Ia74254b58e5b006bd72c35cd6ce872b88de35016 Issue-ID: CCSDK-1081 Signed-off-by: Timoney, Dan (dt5972) --- components/model-catalog/proto-definition/src/main/README.md | 1 + components/model-catalog/proto-definition/src/test/README.md | 1 + 2 files changed, 2 insertions(+) create mode 100644 components/model-catalog/proto-definition/src/main/README.md create mode 100644 components/model-catalog/proto-definition/src/test/README.md diff --git a/components/model-catalog/proto-definition/src/main/README.md b/components/model-catalog/proto-definition/src/main/README.md new file mode 100644 index 00000000..f63edde3 --- /dev/null +++ b/components/model-catalog/proto-definition/src/main/README.md @@ -0,0 +1 @@ +Standard maven directory for source diff --git a/components/model-catalog/proto-definition/src/test/README.md b/components/model-catalog/proto-definition/src/test/README.md new file mode 100644 index 00000000..4701e06b --- /dev/null +++ b/components/model-catalog/proto-definition/src/test/README.md @@ -0,0 +1 @@ +Standard maven directory for unit test cases -- cgit 1.2.3-korg