]> source.dussan.org Git - sonarqube.git/blob
399c626ffb19cd9a568c6805aee581316f0dd028
[sonarqube.git] /
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4   <groupId>foo</groupId>
5   <artifactId>bar</artifactId>
6   <version>0.2-SNAPSHOT</version>
7   <packaging>jar</packaging>
8   <build>
9     <plugins>
10       <plugin>
11         <groupId>com.atlassian.maven.plugins</groupId>
12         <artifactId>maven-clover2-plugin</artifactId>
13         <configuration>
14           <outputDirectory>/foo</outputDirectory>
15           <generateHistorical>true</generateHistorical>
16           <generateXml>false</generateXml>
17           <generatePdf>true</generatePdf>
18           <skip>true</skip>
19         </configuration>
20       </plugin>
21       <plugin>
22         <groupId>org.apache.maven.plugins</groupId>
23         <artifactId>maven-compiler-plugin</artifactId>
24         <configuration>
25           <target>1.5</target>
26         </configuration>
27       </plugin>
28     </plugins>
29   </build>
30 </project>