added gitreview
Change-Id: Iccfecfc6daf66dab0ed911084e13a51c03789010
diff --git a/.gitreview b/.gitreview
new file mode 100644
index 0000000..815d277
--- /dev/null
+++ b/.gitreview
@@ -0,0 +1,6 @@
+[gerrit]
+host=gerrit.onlab.us
+port=29418
+project=onos-next.git
+defaultremote=origin
+defaultbranch=master
diff --git a/of/ctl/conf/checkstyle/checkstyle_maven.properties b/of/ctl/conf/checkstyle/checkstyle_maven.properties
index 916928c..4677e08 100644
--- a/of/ctl/conf/checkstyle/checkstyle_maven.properties
+++ b/of/ctl/conf/checkstyle/checkstyle_maven.properties
@@ -1,2 +1,2 @@
# See: http://rolf-engelhard.de/2011/04/using-the-same-suppression-filter-for-checkstyle-in-eclipse-and-maven/
-config_loc=ctl/conf/checkstyle
+config_loc=conf/checkstyle
diff --git a/of/ctl/conf/checkstyle/sun_checks.xml b/of/ctl/conf/checkstyle/sun_checks.xml
index b1404c1..7dd9d57 100644
--- a/of/ctl/conf/checkstyle/sun_checks.xml
+++ b/of/ctl/conf/checkstyle/sun_checks.xml
@@ -44,7 +44,7 @@
<module name="Checker">
<module name="SuppressionFilter">
- <property name="file" value="${config_loc}/suppressions.xml"/>
+ <property name="file" value="${samedir}/suppressions.xml"/>
</module>
<!--
If you set the basedir property below, then all reported file
diff --git a/of/ctl/pom.xml b/of/ctl/pom.xml
index a837339..9533e0d 100644
--- a/of/ctl/pom.xml
+++ b/of/ctl/pom.xml
@@ -196,53 +196,8 @@
<charset>UTF-8</charset>
<locale>en</locale>
<author>false</author>
- <excludePackageNames>net.floodlightcontroller.*:net.onrc.onos.core.datastore.serializers</excludePackageNames>
</configuration>
</plugin>
-<!-- Remove me when we're sure that system test no longer need JaCoCo
- <plugin>
- <groupId>org.jacoco</groupId>
- <artifactId>jacoco-maven-plugin</artifactId>
- <version>0.6.3.201306030806</version>
- <executions>
- <execution>
- <id>jacoco-initialize</id>
- <goals>
- <goal>prepare-agent</goal>
- </goals>
- </execution>
- <execution>
- <id>jacoco-site</id>
- <phase>package</phase>
- <goals>
- <goal>report</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
--->
- <!-- Uncomment when publishing javadoc to github in the future.
- <plugin>
- <groupId>com.github.github</groupId>
- <artifactId>site-maven-plugin</artifactId>
- <version>0.8</version>
- <configuration>
- <message>Creating site for ${project.version}</message>
- <dryRun>true</dryRun>
- <repositoryName>ONOS</repositoryName>
- <repositoryOwner>OPENNETWORKINGLAB</repositoryOwner>
- <path>javadoc/${project.version}/</path>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>site</goal>
- </goals>
- <phase>site</phase>
- </execution>
- </executions>
- </plugin>
- -->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.4</version>
@@ -299,10 +254,6 @@
<ignores>
<ignore>org.slf4j.*</ignore>
</ignores>
- <excludes>
- <exclude>edu/stanford/ramcloud/**/*.class</exclude>
- <exclude>net/floodlightcontroller/**/web/**/*.class</exclude>
- </excludes>
</instrumentation>
<quiet>true</quiet>
</configuration>
@@ -345,13 +296,8 @@
- maven-pmd-plugin configuration in pom.xml
(under build and reporting)
-->
- <excludes>
- <exclude>**/datastore/serializers/**</exclude>
- <exclude>**/edu/stanford/**</exclude>
- <exclude>**/net/floodlightcontroller/**</exclude>
- </excludes>
<rulesets>
- <ruleset>${basedir}/conf/pmd/onos_ruleset.xml</ruleset>
+ <ruleset>${basedir}/conf/pmd/ruleset.xml</ruleset>
</rulesets>
</configuration>
<executions>