Skip to content

Instantly share code, notes, and snippets.

@jvanzyl
Created August 26, 2010 20:56
Show Gist options
  • Save jvanzyl/552233 to your computer and use it in GitHub Desktop.
Save jvanzyl/552233 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.sonatype.idiom</groupId>
<artifactId>org.eclipse.mylyn.commons.ui</artifactId>
<version>3.5.0-SNAPSHOT</version>
<name>Idiom</name>
<packaging>eclipse-plugin</packaging>
<properties>
<tychoVersion>0.9.0</tychoVersion>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
<version>${tychoVersion}</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.sonatype.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>${tychoVersion}</version>
<configuration>
<resolver>p2</resolver>
<environments>
<environment>
<os>linux</os>
<ws>gtk</ws>
<arch>x86_64</arch>
</environment>
<environment>
<os>win32</os>
<ws>win32</ws>
<arch>x86</arch>
</environment>
<environment>
<os>macosx</os>
<ws>cocoa</ws>
<arch>x86</arch>
</environment>
<environment>
<os>macosx</os>
<ws>cocoa</ws>
<arch>x86_64</arch>
</environment>
</environments>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>helios</id>
<url>http://localhost:8081/nexus/content/repositories/nx-helios/</url>
<layout>p2</layout>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
</repositories>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment