https://github.com/eclipse/ice
Raw File
Tip revision: a1ae6b78b488f853ebad9dab9087a908fa34f575 authored by Robert Smith on 14 February 2017, 15:42:25 UTC
Updated Linux launch configuration
Tip revision: a1ae6b7
pom.xml
<?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.ice</groupId>
      <artifactId>org.eclipse.ice.build</artifactId>
      <version>2.2.0-SNAPSHOT</version>
      <relativePath>../org.eclipse.ice.parent/pom.xml</relativePath>
   </parent>

   <artifactId>org.eclipse.ice.target.neon</artifactId>
   <packaging>pom</packaging>

   <build>
      <plugins>
         <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>build-helper-maven-plugin</artifactId>
            <version>1.3</version>
            <executions>
               <!-- make target file available for incremental builds -->
               <execution>
                  <id>attach-artifacts</id>
                  <phase>package</phase>
                  <goals>
                     <goal>attach-artifact</goal>
                  </goals>
                  <configuration>
                     <artifacts>
                        <artifact>
                           <!-- note: the file name must be ${classifier}.target -->
                           <file>neon.target</file>
                           <type>target</type>
                           <classifier>neon</classifier>
                        </artifact>
                     </artifacts>
                  </configuration>
               </execution>
            </executions>
         </plugin>
      </plugins>
   </build>
</project>
back to top