view pom.xml @ 147:ee8e92ed83ba default tip

Add hints for fields in new project dialog Add some hints to clarify/illustrate what valid contents of fields in the new project dailog might look like.
author Omair Majid <omajid@redhat.com>
date Tue, 12 Aug 2014 09:50:52 -0400
parents 7104a56d13f6
children
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>

  <groupId>com.redhat.thermostat.tools.eclipse.plugin</groupId>
  <artifactId>com.redhat.thermostat.tools.eclipse.plugin.parent</artifactId>
  <version>0.1.0-SNAPSHOT</version>
  <packaging>pom</packaging>

  <modules>
    <module>com.redhat.thermostat.tools.eclipse.plugin</module>
    <module>com.redhat.thermostat.tools.eclipse.plugin-feature</module>
    <module>com.redhat.thermostat.tools.eclipse.plugin-p2-repo</module>
    <module>com.redhat.thermostat.tools.eclipse.plugin.tests</module>
  </modules>

  <properties>
    <tycho-version>0.19.0</tycho-version>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <repositories>
   <repository>
     <id>kepler</id>
     <layout>p2</layout>
     <url>http://download.eclipse.org/releases/kepler</url>
   </repository>
  </repositories>

  <build>
    <plugins>
      <plugin>
        <groupId>org.eclipse.tycho</groupId>
        <artifactId>tycho-maven-plugin</artifactId>
        <version>${tycho-version}</version>
        <extensions>true</extensions>
      </plugin>
      <plugin>
        <groupId>org.eclipse.tycho</groupId>
        <artifactId>target-platform-configuration</artifactId>
        <version>${tycho-version}</version>
        <configuration>
          <environments>
            <environment>
              <os>linux</os>
              <ws>gtk</ws>
              <arch>x86</arch>
            </environment>
            <environment>
              <os>linux</os>
              <ws>gtk</ws>
              <arch>x86_64</arch>
            </environment>
          </environments>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>