Skip to content

Instantly share code, notes, and snippets.

Created September 7, 2011 17:11
Show Gist options
  • Save anonymous/1201133 to your computer and use it in GitHub Desktop.
Save anonymous/1201133 to your computer and use it in GitHub Desktop.
parent pom
<?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>br.com</groupId>
<artifactId>workspaceRcp</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>br.com.zorba.feature</module>
<module>br.com.zorba.plugin</module>
<module>br.com.zorba</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
<version>0.11.1</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>0.11.1</version>
<configuration>
<resolver>p2</resolver>
<target>
<artifact>
<groupId>br.com</groupId>
<artifactId>br.com.zorba.plugin</artifactId>
<version>0.1.0-SNAPSHOT</version>
<classifier>target/br.com.zorba</classifier>
</artifact>
</target>
<ignoreTychoRepositories>true</ignoreTychoRepositories>
<environments>
<environment>
<os>linux</os>
<ws>gtk</ws>
<arch>x86</arch>
</environment>
</environments>
</configuration>
</plugin>
</plugins>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment