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 | 2301627e59be3468eab84aa243f18189af1fd4fe (patch) | |
tree | 86e19e4f63ec635ea6913831d87c2fda16425f4b | |
parent | b0203bc26d1f76ddae3628a407cf4d055aba4d6d (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 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 |