Skip to content

Instantly share code, notes, and snippets.

@jubianchi
Created April 2, 2012 10:26
Show Gist options
  • Save jubianchi/2282426 to your computer and use it in GitHub Desktop.
Save jubianchi/2282426 to your computer and use it in GitHub Desktop.
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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>
<groupId>fr.jubianchi</groupId>
<artifactId>foo</artifactId>
<name>foo</name>
<version>0.1-alpha</version>
<packaging>pom</packaging>
<build>
<sourceDirectory>${basedir}/src/Foo</sourceDirectory>
<testSourceDirectory>${basedir}/src/Foo/Test/Units/Foo</testSourceDirectory>
</build>
<properties>
<sonar.language>php</sonar.language>
<sonar.exclusions>**/vendor/**, **/Vendor/**, **/Test/**</sonar.exclusions>
<sonar.phpUnit.analyze.test.directory>false</sonar.phpUnit.analyze.test.directory>
<sonar.phpUnit.coverage.skip>true</sonar.phpUnit.coverage.skip>
<sonar.phpUnit.skip>true</sonar.phpUnit.skip>
<!--<sonar.atoum.skip>true</sonar.atoum.skip>
<sonar.atoum.coverage.skip>true</sonar.atoum.coverage.skip>-->
<!--<sonar.atoum.commandLine>atoum</sonar.atoum.commandLine>-->
<!--<sonar.atoum.commandLineArgument></sonar.atoum.commandLineArgument>-->
<sonar.atoum.configuration>${basedir}/.atoum.php</sonar.atoum.configuration>
<sonar.phpDepend.skip>false</sonar.phpDepend.skip>
<sonar.phpPmd.skip>false</sonar.phpPmd.skip>
<sonar.phpCodesniffer.skip>false</sonar.phpCodesniffer.skip>
<sonar.atoum.shouldRun>true</sonar.atoum.shouldRun>
<sonar.atoum.shouldSkip>false</sonar.atoum.shouldSkip>
<sonar.atoum.coverage.shouldRun>true</sonar.atoum.coverage.shouldRun>
<sonar.atoum.coverage.shouldSkip>false</sonar.atoum.coverage.shouldSkip>
</properties>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment