view eclipse/core-p2-repository/pom.xml @ 1377:31528d30c099

Bump version and restore SNAPSHOT qualifier for further in-branch development.
author Jon VanAlten <jon.vanalten@redhat.com>
date Tue, 26 Nov 2013 01:21:08 -0700
parents 504438de7243
children ea1009d9c02a
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>1.0.1-SNAPSHOT</version>
  </parent>
  <artifactId>com.redhat.thermostat.eclipse.core-p2-repo</artifactId>

  <name>Thermostat Client p2 Repository</name>

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

  <dependencies>
    <dependency>
      <groupId>com.redhat.thermostat.eclipse.parent</groupId>
      <artifactId>com.redhat.thermostat.client.feature</artifactId>
      <version>1.0.1-SNAPSHOT</version>
      <type>eclipse-feature</type>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.eclipse.tycho</groupId>
        <artifactId>tycho-p2-publisher-plugin</artifactId>
        <version>${tycho-version}</version>
        <configuration>
          <publishArtifacts>true</publishArtifacts>
        </configuration>
      </plugin>
    </plugins>
  </build>

  <packaging>eclipse-repository</packaging>
</project>