summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--docs/index.rst12
-rw-r--r--docs/microserviceslist.rst13
-rwxr-xr-xpom.xml5
3 files changed, 8 insertions, 22 deletions
diff --git a/docs/index.rst b/docs/index.rst
index 05670768..06a5f4f4 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -23,8 +23,6 @@ Microservices:
Installation:
=============
-Steps
------
To compile this code:
1. Make sure your local Maven settings file ($HOME/.m2/settings.xml) contains
@@ -37,14 +35,14 @@ Steps
Logging:
-=============
+========
CCSDK uses slf4j to log messages to the standard OpenDaylight karaf.log
log file.
-Where to Access Information
----------------------------
-Logs are found within the SDNC docker container, in the directory
-/opt/opendaylight/current/data/logs.
+ Where to Access Information
+ ============================
+ Logs are found within the SDNC docker container, in the directory
+ /opt/opendaylight/current/data/logs.
Release Notes:
==============
diff --git a/docs/microserviceslist.rst b/docs/microserviceslist.rst
deleted file mode 100644
index bdcee023..00000000
--- a/docs/microserviceslist.rst
+++ /dev/null
@@ -1,13 +0,0 @@
-.. This work is licensed under a Creative Commons Attribution 4.0 International License.
-.. http://creativecommons.
-.. Copyright (C) 2019 IBM.
-
-Microservices:
----------------
-.. toctree::
- :maxdepth: 1
-
- Controller BluePrints Studio Processor
- Blueprints processor
- NetworkElementNameGen (NENG)
- Vlan Tag API
diff --git a/pom.xml b/pom.xml
index b1addce0..be2a417c 100755
--- a/pom.xml
+++ b/pom.xml
@@ -34,8 +34,10 @@
Note: coverage for now is invalid and is failing to load because of:
"Cannot import coverage information for file '{file}', coverage data is invalid."
see https://github.com/jacoco/jacoco/issues/763
- That issue has been fixed in 0.8.3 but haven't yet been release. -->
+ That issue has been fixed in 0.8.3 , so we override the default ONAP
+ version here to pick up that fix -->
<sonar.coverage.jacoco.xmlReportPaths>${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
+ <jacoco.version>0.8.3</jacoco.version>
</properties>
<modules>
@@ -48,7 +50,6 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
- <!--Change version to 0.8.3 when released-->
<version>${jacoco.version}</version>
</plugin>
</plugins>