aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-batch/pom.xml
diff options
context:
space:
mode:
authorJulien HENRY <julien.henry@sonarsource.com>2015-02-10 14:59:36 +0100
committerJulien HENRY <julien.henry@sonarsource.com>2015-02-10 15:34:18 +0100
commit9fb2ca6c4d1257c6387f108ffbca0cf09e802704 (patch)
treecdc3b112641993007f6d53767bf82bc280c3c7c3 /sonar-batch/pom.xml
parentdb911e46da06f2339afa889acb3c8f1e7bbe5ae9 (diff)
downloadsonarqube-9fb2ca6c4d1257c6387f108ffbca0cf09e802704.tar.gz
sonarqube-9fb2ca6c4d1257c6387f108ffbca0cf09e802704.zip
SONAR-6068 Improve performance of FileSystem query operation
Diffstat (limited to 'sonar-batch/pom.xml')
-rw-r--r--sonar-batch/pom.xml18
1 files changed, 18 insertions, 0 deletions
diff --git a/sonar-batch/pom.xml b/sonar-batch/pom.xml
index 6a1cae560b1..a06d4d36ed6 100644
--- a/sonar-batch/pom.xml
+++ b/sonar-batch/pom.xml
@@ -9,6 +9,10 @@
<artifactId>sonar-batch</artifactId>
<name>SonarQube :: Batch</name>
+
+ <properties>
+ <enableBenchmarkAssertions>false</enableBenchmarkAssertions>
+ </properties>
<dependencies>
<dependency>
@@ -197,4 +201,18 @@
</plugin>
</plugins>
</build>
+
+ <profiles>
+ <profile>
+ <id>runBenchmarks</id>
+ <activation>
+ <property>
+ <name>runBenchmarks</name>
+ </property>
+ </activation>
+ <properties>
+ <enableBenchmarkAssertions>true</enableBenchmarkAssertions>
+ </properties>
+ </profile>
+ </profiles>
</project>