view eclipse/com.redhat.thermostat.eclipse.target_platform/pom.xml @ 1228:9aae3ae1716f 0.13.0

Drop SNAPSHOT qualifier and bump version for 0.13.0 release.
author Jon VanAlten <jon.vanalten@redhat.com>
date Thu, 05 Sep 2013 10:33:57 -0600
parents 2d799b581c7b
children 9ccb1fd0482f
line wrap: on
line source

<?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>
    <artifactId>thermostat-eclipse-parent</artifactId>
    <groupId>com.redhat.thermostat.eclipse.parent</groupId>
    <version>0.13.0</version>
  </parent>
  <groupId>com.redhat.thermostat.eclipse.parent</groupId>
  <artifactId>com.redhat.thermostat.eclipse.target_platform</artifactId>
  <version>0.13.0</version>
  <packaging>pom</packaging>

  <name>Thermostat Eclipse Target Platform</name>

  <properties>
    <eclipse-root>${basedir}/..</eclipse-root>
  </properties>

  <build>
    <plugins>
      <plugin>
        <artifactId>maven-resources-plugin</artifactId>
        <version>2.6</version>
        <executions>
          <execution>
            <id>copy-resources</id>
            <phase>package</phase>
            <goals>
              <goal>copy-resources</goal>
            </goals>
            <configuration>
              <outputDirectory>${basedir}/target</outputDirectory>
              <resources>          
                <resource>
                  <directory>src/main/resources</directory>
                  <filtering>true</filtering>
                </resource>
              </resources>              
            </configuration>            
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>