Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: edf908778a603574f5bd69f698135b510c8a946a (plain) (tree)





















                                                                                                                                                     
                                































                                                   
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>org.eclipse.ecf</groupId>
    <artifactId>ecf-parent</artifactId>
    <version>1.0.0-SNAPSHOT</version>
    <relativePath>../../</relativePath>
  </parent>
  <groupId>org.eclipse.ecf</groupId>
  <artifactId>org.eclipse.ecf.releng.target</artifactId>
  <version>1.0.0-SNAPSHOT</version>
  <packaging>pom</packaging>

  <name>ECF Target Platform Definitions</name>

  <build>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>build-helper-maven-plugin</artifactId>
        <version>3.0.0</version>
        <executions>
          <execution>
            <id>attach-artifacts</id>
            <phase>package</phase>
            <goals>
              <goal>attach-artifact</goal>
            </goals>
            <configuration>
              <artifacts>
                <artifact>
                  <file>ecf-luna.target</file>
                  <type>target</type>
                  <classifier>ecf-luna</classifier>
                </artifact>
                <artifact>
                  <file>ecf-mars.target</file>
                  <type>target</type>
                  <classifier>ecf-mars</classifier>
                </artifact>
                <artifact>
                  <file>ecf-neon.target</file>
                  <type>target</type>
                  <classifier>ecf-neon</classifier>
                </artifact>
              </artifacts>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>

Back to the top