<?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</groupId>
    <artifactId>parent</artifactId>
    <version>10</version>
    <relativePath>../parent</relativePath>
  </parent>

  <groupId>org.codehaus.sonar-plugins.php</groupId>
  <artifactId>parent</artifactId>
  <version>1.0</version>
  <packaging>pom</packaging>

  <name>Sonar PHP Project</name>
  <description>Enables analysis of PHP projects into Sonar.</description>
  <inceptionYear>2010</inceptionYear>
  <url>http://docs.codehaus.org/display/SONAR/PHP+Plugin</url>

  <organization>
    <name>Codehaus Sonar Plugins</name>
    <url>http://sonar-plugins.codehaus.org/</url>
  </organization>

  <modules>
    <module>sonar-php-plugin</module>
    <!-- TODO: Those modules do not need to be built, and they may even be removed soon... 
    <module>phpmd-rulesets</module>
    <module>phpcodesniffer-rulesets</module>
    -->
  </modules>

  <licenses>
    <license>
      <name>GNU LGPL v3</name>
      <url>http://www.gnu.org/licenses/lgpl.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>

  <developers>
    <developer>
      <id>fabemn</id>
      <name>Fabrice Bellingard</name>
      <email>fabrice.bellingard@sonarsource.com</email>
    </developer>
    <developer>
      <id>proofek</id>
      <name>Sebastian Marek</name>
      <email>proofek@gmail.com</email>
    </developer>
    <developer>
      <id>gennadiyl</id>
      <name>Gennadiy Litvinyuk</name>
      <email>gennadiy@gmail.com</email>
    </developer>
    <developer>
      <id>akram</id>
      <name>Akram Ben Aissi</name>
      <email>akram.benaissi@free.fr</email>
    </developer>
    <developer>
      <id>blacksun</id>
      <name>Gabriele Santini</name>
      <email>gab.santini@gmail.com</email>
    </developer>
  </developers>

  <scm>
    <connection>scm:svn:http://svn.codehaus.org/sonar-plugins/tags/parent-1.0</connection>
    <developerConnection>scm:svn:https://svn.codehaus.org/sonar-plugins/tags/parent-1.0</developerConnection>
    <url>scm:svn:https://svn.codehaus.org/sonar-plugins/tags/parent-1.0</url>
  </scm>
  <issueManagement>
    <system>JIRA</system>
    <url>http://jira.codehaus.org/browse/SONARPLUGINS/component/13723</url>
  </issueManagement>
  <ciManagement>
    <system>Bamboo</system>
    <url>http://bamboo.ci.codehaus.org/browse/SONAR-PHP</url>
  </ciManagement>

  <profiles>
    <profile>
      <id>m2e</id>
      <activation>
        <!-- This profile is active only when used from Eclipse m2e and is 
          used only to store settings. -->
        <property>
          <name>m2e.version</name>
        </property>
      </activation>
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <groupId>org.eclipse.m2e</groupId>
              <artifactId>lifecycle-mapping</artifactId>
              <version>1.0.0</version>
              <configuration>
                <lifecycleMappingMetadata>
                  <pluginExecutions>
                    <pluginExecution>
                      <pluginExecutionFilter>
                        <groupId>
                          com.mycila.maven-license-plugin
                        </groupId>
                        <artifactId>
                          maven-license-plugin
                        </artifactId>
                        <versionRange>
                          [1.9.0,)
                        </versionRange>
                        <goals>
                          <goal>check</goal>
                        </goals>
                      </pluginExecutionFilter>
                      <action>
                        <ignore />
                      </action>
                    </pluginExecution>
                    <pluginExecution>
                      <pluginExecutionFilter>
                        <groupId>org.codehaus.sonar</groupId>
                        <artifactId>sonar-packaging-maven-plugin</artifactId>
                        <versionRange>[1.0,)</versionRange>
                        <goals>
                          <goal>check-dependencies</goal>
                        </goals>
                      </pluginExecutionFilter>
                      <action>
                        <ignore />
                      </action>
                    </pluginExecution>
                  </pluginExecutions>
                </lifecycleMappingMetadata>
              </configuration>
            </plugin>
          </plugins>
        </pluginManagement>
      </build>
    </profile>
  </profiles>

</project>

