Code review fixes.
diff --git a/core/rest/Makefile b/core/rest/Makefile
index 22db929..c87996e 100644
--- a/core/rest/Makefile
+++ b/core/rest/Makefile
@@ -36,9 +36,9 @@
 	$(GENVERS) > $(VFILE)
 	@if [ $(GENVERS) -nt target/$(BLD_TRAFODION_REST_TARNAME) ]; then echo "update manifest"; $(RM) -f target/$(BLD_TRAFODION_REST_TARNAME); fi
 	@if [ $(TRAF_HOME)/export/include/SCMBuildStr.h -nt target/$(BLD_TRAFODION_REST_TARNAME) ]; then echo "update manifest"; $(RM) -f target/$(BLD_TRAFODION_REST_TARNAME); fi
-	echo "$(MAVEN) site package -DskipTests -P jdbc,!eclipse"
+	echo "$(MAVEN) site package -DskipTests"
 	echo "### For full Maven output, see file build_rest.log"
-	set -o pipefail && $(MAVEN) site package -DskipTests -P jdbc,!eclipse | tee build_rest.log | grep --line-buffered -E -e '^\[[^WId]' -e '^\[INFO\] B[Uu][Ii][Ll][Dd]' -e 'to compile'
+	set -o pipefail && $(MAVEN) site package -DskipTests | tee build_rest.log | grep --line-buffered -E -e '^\[[^WId]' -e '^\[INFO\] B[Uu][Ii][Ll][Dd]' -e 'to compile'
 	$(RM) $(VFILE)
 
 
diff --git a/core/sqf/monitor/linux/cluster.cxx b/core/sqf/monitor/linux/cluster.cxx
index ed3a2ce..c5a7762 100644
--- a/core/sqf/monitor/linux/cluster.cxx
+++ b/core/sqf/monitor/linux/cluster.cxx
@@ -389,6 +389,8 @@
     const char method_name[] = "CCluster::AssignLeaders";
     TRACE_ENTRY;
 
+    EnterSyncCycle();
+
 #ifndef NAMESERVER_PROCESS
     AssignTmLeader ( pnid, checkProcess );
 #else
@@ -397,6 +399,8 @@
 #endif
     AssignMonitorLeader ( failedMaster );
 
+    ExitSyncCycle();
+
     TRACE_EXIT;
 }
 
diff --git a/dcs/pom.xml b/dcs/pom.xml
index f2f2585..206e424 100644
--- a/dcs/pom.xml
+++ b/dcs/pom.xml
@@ -673,9 +673,6 @@
             <version>${jdbct2.version}</version>
          </dependency>
       </dependencies>
-      <properties>
-          <additionalparam>-Xdoclint:none</additionalparam>
-       </properties>
     </profile>
     <profile>
       <id>runSmallTests</id>