-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
50 lines (37 loc) · 2.15 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<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>com.centraldesktop</groupId>
<artifactId>parallel</artifactId>
<name>CentralDesktop Parallel (PHP)</name>
<version>1.0-SNAPSHOT</version>
<!-- For the moment, specify pom as packaging for php projects -->
<packaging>pom</packaging>
<!-- some properties that you may want to change -->
<properties>
<sonar.scm.url>scm:git:file://.</sonar.scm.url>
<sonar.language>php</sonar.language>
<sonar.verbose>true</sonar.verbose>
<!--WTF, generating an XML file but sonar is not accepting it. Not compat with version 1.4?-->
<!--<sonar.phpPmd.skip>true</sonar.phpPmd.skip>-->
<sonar.phpPmd.analyzeOnly>true</sonar.phpPmd.analyzeOnly>
<sonar.phpPmd.analyzeOnly>true</sonar.phpPmd.analyzeOnly>
<sonar.phpPmd.reportPath>target/logs/pmd.xml</sonar.phpPmd.reportPath>
<sonar.phpCodesniffer.analyzeOnly>true</sonar.phpCodesniffer.analyzeOnly>
<sonar.phpCodesniffer.reportPath>target/logs/codesniffer.xml</sonar.phpCodesniffer.reportPath>
<sonar.phpDepend.analyzeOnly>true</sonar.phpDepend.analyzeOnly>
<sonar.phpDepend.reportType>summary-xml</sonar.phpDepend.reportType>
<sonar.phpDepend.reportPath>target/logs/pdepend.xml</sonar.phpDepend.reportPath>
<sonar.php.coverage.analyzeOnly>true</sonar.php.coverage.analyzeOnly>
<sonar.php.analyzeOnly>true</sonar.php.analyzeOnly>
<sonar.php.tests.reportPath>target/logs/phpunit.xml</sonar.php.tests.reportPath>
<sonar.php.coverage.reportPath>target/logs/phpunit.coverage.xml</sonar.php.coverage.reportPath>
<sonargraph.prepareForSonar>true</sonargraph.prepareForSonar>
</properties>
<build>
<!-- You cannot omit this one, because maven will implicitly add src/main/java
to it -->
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>test</testSourceDirectory>
</build>
</project>