diff options
author | Timoney, Dan (dt5972) <dtimoney@att.com> | 2019-02-15 13:58:24 -0500 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2019-02-15 21:20:35 +0000 |
commit | 148dd1c3c3d394791817246bd973104142fe93d5 (patch) | |
tree | 120c3f46a3db91cdf9a9fcee655df23961067b3d | |
parent | bc67e43da12a2b341a15087adfae6e613990b5a2 (diff) |
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) <dtimoney@att.com>
-rw-r--r-- | components/model-catalog/proto-definition/src/main/README.md | 1 | ||||
-rw-r--r-- | components/model-catalog/proto-definition/src/test/README.md | 1 |
2 files changed, 2 insertions, 0 deletions
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 000000000..f63edde3f --- /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 000000000..4701e06b7 --- /dev/null +++ b/components/model-catalog/proto-definition/src/test/README.md @@ -0,0 +1 @@ +Standard maven directory for unit test cases |