<?xml version="1.0" encoding="UTF-8"?>
<!--
  #%L
  EUGene :: Maven plugin

  $Id: pom.xml 937 2010-07-08 08:10:36Z tchemit $
  $HeadURL: http://svn.nuiton.org/svn/eugene/tags/eugene-2.1/maven-eugene-plugin/pom.xml $
  %%
  Copyright (C) 2006 - 2010 CodeLutin
  %%
  This program is free software: you can redistribute it and/or modify
  it under the terms of the GNU Lesser General Public License as
  published by the Free Software Foundation, either version 3 of the
  License, or (at your option) any later version.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Lesser Public License for more details.

  You should have received a copy of the GNU General Lesser Public
  License along with this program.  If not, see
  <http://www.gnu.org/licenses/lgpl-3.0.html>.
  #L%
  -->

<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>

    <!-- ************************************************************* -->
    <!-- *** POM Relationships *************************************** -->
    <!-- ************************************************************* -->
    <parent>
        <groupId>org.nuiton</groupId>
        <artifactId>eugene</artifactId>
        <version>2.1</version>
    </parent>

    <groupId>org.nuiton.eugene</groupId>
    <artifactId>maven-eugene-plugin</artifactId>

    <!-- POM Relationships : Inheritance : Dependencies -->
    <dependencies>

        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>eugene</artifactId>
            <version>${project.version}</version>
            <scope>compile</scope>
        </dependency>

        <dependency>
            <groupId>org.apache.maven</groupId>
            <artifactId>maven-plugin-api</artifactId>
        </dependency>

        <dependency>
            <groupId>org.apache.maven</groupId>
            <artifactId>maven-project</artifactId>
        </dependency>

        <dependency>
            <groupId>org.codehaus.plexus</groupId>
            <artifactId>plexus-utils</artifactId>
        </dependency>

        <dependency>
            <groupId>org.nuiton</groupId>
            <artifactId>maven-helper-plugin</artifactId>
        </dependency>

        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
            <scope>runtime</scope>
        </dependency>

    </dependencies>

    <!-- ************************************************************* -->
    <!-- *** Project Information ************************************* -->
    <!-- ************************************************************* -->
    <name>EUGene :: Maven plugin</name>
    <inceptionYear>2006</inceptionYear>
    <description>maven plugin to use the eugene library</description>

    <!-- ************************************************************* -->
    <!-- *** Build Settings ****************************************** -->
    <!-- ************************************************************* -->
    <packaging>maven-plugin</packaging>

    <build>

        <plugins>

            <!-- expose new plexus components -->
            <plugin>
                <groupId>org.codehaus.plexus</groupId>
                <artifactId>plexus-component-metadata</artifactId>
                <executions>
                    <execution>
                        <goals>
                            <goal>generate-metadata</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

        </plugins>

    </build>

    <profiles>

        <!-- perform only on a release stage when using the maven-release-plugin -->
        <profile>
            <id>release-profile</id>
            <activation>
                <property>
                    <name>performRelease</name>
                    <value>true</value>
                </property>
            </activation>


          <build>

              <plugins>

                  <!-- plugin plugin -->
                  <plugin>
                      <artifactId>maven-plugin-plugin</artifactId>
                      <executions>
                          <execution>
                              <goals>
                                  <goal>helpmojo</goal>
                              </goals>
                          </execution>
                      </executions>
                  </plugin>
               </plugins>
          </build>

        </profile>
      
        <!-- perform only on a release stage when using the maven-release-plugin -->
        <profile>
            <id>reporting</id>
            <activation>
                <property>
                    <name>performRelease</name>
                    <value>true</value>
                </property>
            </activation>

          <reporting>
              <plugins>
                <!--Site report's plugin-->
                <plugin>
                    <artifactId>maven-plugin-plugin</artifactId>
                    <version>2.5.1</version>
                </plugin>

                <plugin>
                    <groupId>org.codehaus.plexus</groupId>
                    <artifactId>plexus-maven-plugin</artifactId>
                    <version>1.3.8</version>
                </plugin>
            </plugins>
          </reporting>

        </profile>

        <profile>
            <id>run-its</id>
            <activation>
                <property>
                    <name>performRelease</name>
                    <value>true</value>
                </property>
            </activation>
            <build>
                <plugins>
                    <plugin>
                        <artifactId>maven-invoker-plugin</artifactId>
                        <configuration>
                            <pomIncludes>
                                <pomInclude>copyVersionFiles/anomalie163/pom.xml</pomInclude>
                                <pomInclude>smart-generate/only-zargo/pom.xml</pomInclude>
                                <pomInclude>smart-generate/only-zargo-xmi/pom.xml</pomInclude>
                                <pomInclude>smart-generate/all/pom.xml</pomInclude>
                                <pomInclude>smart-generate/generators/pom.xml</pomInclude>
                                <!--<pomInclude>**/pom.xml</pomInclude>-->
                            </pomIncludes>
                            <postBuildHookScript>verify</postBuildHookScript>
                            <localRepositoryPath>${basedir}/target/local-repo</localRepositoryPath>
                            <settingsFile>src/it/settings.xml</settingsFile>
                            <cloneProjectsTo>${project.build.directory}/its</cloneProjectsTo>
                            <!--<debug>true</debug>-->
                        </configuration>
                        <executions>
                            <execution>
                                <id>integration-test</id>
                                <goals>
                                    <goal>install</goal>
                                    <goal>run</goal>
                                </goals>
                                <phase>integration-test</phase>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>

</project>

