<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>org.codehaus.sonar-plugins.dotnet</groupId>
    <artifactId>parent</artifactId>
    <version>2.1</version>
    <relativePath>../..</relativePath>
  </parent>

  <artifactId>sonar-dotnet-plugin</artifactId>
  <packaging>sonar-plugin</packaging>

  <name>Sonar .NET Plugin :: Core</name>
  <description>Plugin that defines the core APIs for the .NET Ecosystem.</description>
  <url>http://docs.codehaus.org/display/SONAR/C%23+Plugins+Ecosystem</url>

  <properties>
    <sonar.pluginName>.NET</sonar.pluginName>
    <sonar.pluginClass>org.sonar.plugins.dotnet.core.DotNetCorePlugin</sonar.pluginClass>
  </properties>

  <dependencies>
    <!-- sonar open-source -->
    <dependency>
      <groupId>org.codehaus.sonar</groupId>
      <artifactId>sonar-plugin-api</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.codehaus.sonar</groupId>
      <artifactId>sonar-squid</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.codehaus.sonar</groupId>
      <artifactId>sonar-duplications</artifactId>
      <scope>provided</scope>
    </dependency>
  </dependencies>

</project>
