diff options
Diffstat (limited to 'server/sonar-server-benchmarks/pom.xml')
-rw-r--r-- | server/sonar-server-benchmarks/pom.xml | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/server/sonar-server-benchmarks/pom.xml b/server/sonar-server-benchmarks/pom.xml new file mode 100644 index 00000000000..f47e9b115b3 --- /dev/null +++ b/server/sonar-server-benchmarks/pom.xml @@ -0,0 +1,84 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.codehaus.sonar</groupId> + <artifactId>server</artifactId> + <version>5.0-SNAPSHOT</version> + <relativePath>..</relativePath> + </parent> + <artifactId>sonar-server-benchmarks</artifactId> + <name>SonarQube :: Server :: Benchmark</name> + + <properties> + <testInclusions/> + <enableBenchmarkAssertions>true</enableBenchmarkAssertions> + </properties> + + <dependencies> + <dependency> + <groupId>org.codehaus.sonar</groupId> + <artifactId>sonar-server</artifactId> + <version>${project.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.codehaus.sonar</groupId> + <artifactId>sonar-server</artifactId> + <type>test-jar</type> + <version>${project.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.codehaus.sonar</groupId> + <artifactId>sonar-search</artifactId> + <version>${project.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.codehaus.sonar</groupId> + <artifactId>sonar-testing-harness</artifactId> + <scope>test</scope> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <skipTests>${skipServerTests}</skipTests> + <argLine>-Xmx1G -Xms256m -server -Djava.awt.headless=true -DenableBenchmarkAssertions=${enableBenchmarkAssertions}</argLine> + <includes> + <include>${testInclusions}</include> + </includes> + </configuration> + </plugin> + </plugins> + </build> + + <!-- + mvn install -DrunBenchmarks=true -DenableBenchmarkAssertions=true + + --> + <profiles> + <profile> + <id>runBenchmarks</id> + <activation> + <property> + <name>runBenchmarks</name> + </property> + </activation> + <properties> + <testInclusions>org/sonar/server/benchmark/**/*.java</testInclusions> + </properties> + </profile> + </profiles> +</project> |