]> source.dussan.org Git - sonarqube.git/blob
3e530f4e52b6b6c564f73a23746c8d0bd56fe3ea
[sonarqube.git] /
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4   <modelVersion>4.0.0</modelVersion>
5
6   <groupId>org.codehaus.sonar</groupId>
7   <artifactId>test</artifactId>
8   <version>1.0</version>
9   <packaging>sonar-plugin</packaging>
10   <name>Package dependencies</name>
11
12   <dependencies>
13     <dependency>
14       <groupId>org.codehaus.sonar</groupId>
15       <artifactId>sonar-plugin-api</artifactId>
16       <version>@sonar.version@</version>
17       <exclusions>
18         <exclusion>
19           <groupId>org.codehaus.plexus</groupId>
20           <artifactId>plexus-utils</artifactId>
21         </exclusion>
22       </exclusions>
23     </dependency>
24
25     <!-- Should be included into jar -->
26     <dependency>
27       <groupId>org.codehaus.plexus</groupId>
28       <artifactId>plexus-utils</artifactId>
29       <version>1.5.6</version>
30     </dependency>
31   </dependencies>
32
33   <build>
34     <plugins>
35       <plugin>
36         <groupId>@project.groupId@</groupId>
37         <artifactId>@project.artifactId@</artifactId>
38         <version>@project.version@</version>
39         <extensions>true</extensions>
40         <configuration>
41           <pluginClass>org.sonar.plugins.sample.SamplePlugin</pluginClass>
42         </configuration>
43       </plugin>
44       <plugin>
45         <groupId>org.apache.maven.plugins</groupId>
46         <artifactId>maven-compiler-plugin</artifactId>
47         <version>2.3.1</version>
48       </plugin>
49     </plugins>
50   </build>
51 </project>