Skip to main content
summaryrefslogblamecommitdiffstats
blob: d2af1a6ed3ab76798c555ac9815d80d199135f15 (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>fromcvs</groupId>
    <artifactId>FROMCVS</artifactId>
    <version>3.8.0-SNAPSHOT</version>
  </parent>

  <groupId>org.eclipse.test.performance.win32</groupId>
  <artifactId>org.eclipse.test.performance.win32</artifactId>
  <version>3.1.100-SNAPSHOT</version>
  <packaging>eclipse-plugin</packaging>


  <build>
    <plugins>
      <plugin>
        <groupId>org.eclipse.tycho</groupId>
        <artifactId>target-platform-configuration</artifactId>
        <configuration>
          <environments>
            <environment>
              <os>win32</os>
              <ws>win32</ws>
              <arch>x86</arch>
            </environment>
            <environment>
              <os>win32</os>
              <ws>win32</ws>
              <arch>x86_64</arch>
            </environment>
          </environments>
        </configuration>
      </plugin>
    </plugins>
  </build>

</project>

Back to the top