Advertisement
Guest User

Untitled

a guest
Dec 6th, 2012
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2.     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3.     <modelVersion>4.0.0</modelVersion>
  4.     <groupId>com.iwaysoftware.integration.tools</groupId>
  5.     <artifactId>integration.tools-parent</artifactId>
  6.     <version>1.0.0</version>
  7.     <packaging>pom</packaging>
  8.     <properties>
  9.         <tycho-version>0.16.0</tycho-version>
  10.     </properties>
  11.     <build>
  12.         <plugins>
  13.             <plugin>
  14.                 <groupId>org.eclipse.tycho</groupId>
  15.                 <artifactId>tycho-compiler-plugin</artifactId>
  16.                 <version>0.16.0</version>
  17.                 <configuration>
  18.                     <source>1.6</source>
  19.                     <target>1.6</target>
  20.                 </configuration>
  21.             </plugin>
  22.             <plugin>
  23.                 <groupId>org.eclipse.tycho</groupId>
  24.                 <artifactId>target-platform-configuration</artifactId>
  25.                 <version>${tycho-version}</version>
  26.                 <configuration>
  27.                     <dependency-resolution>
  28.                         <extraRequirements>
  29.                             <requirement>
  30.                                 <type>p2-installable-unit</type>
  31.                                 <id>org.eclipse.jdt.feature.group</id>
  32.                                 <versionRange>0.0.0</versionRange>
  33.                             </requirement>
  34.                         </extraRequirements>
  35.                     </dependency-resolution>
  36.                     <target>
  37.                         <artifact>
  38.                             <groupId>com.iwaysoftware.integration.tools</groupId>
  39.                             <artifactId>indigo</artifactId>
  40.                         </artifact>
  41.                     </target>
  42.                     <environments>
  43.                         <environment>
  44.                             <os>win32</os>
  45.                             <ws>win32</ws>
  46.                             <arch>x86</arch>
  47.                         </environment>
  48.                         <environment>
  49.                             <os>linux</os>
  50.                             <ws>gtk</ws>
  51.                             <arch>x86</arch>
  52.                         </environment>
  53.                     </environments>
  54.                     <pomDependencies>consider</pomDependencies>
  55.                 </configuration>
  56.             </plugin>
  57.             <plugin>
  58.                 <groupId>org.eclipse.tycho</groupId>
  59.                 <artifactId>tycho-maven-plugin</artifactId>
  60.                 <version>${tycho-version}</version>
  61.                 <extensions>true</extensions>
  62.             </plugin>
  63.             <plugin>
  64.                 <groupId>org.apache.maven.plugins</groupId>
  65.                 <artifactId>maven-compiler-plugin</artifactId>
  66.                 <version>3.0</version>
  67.                 <configuration>
  68.                     <source>1.6</source>
  69.                     <target>1.6</target>
  70.                 </configuration>
  71.             </plugin>
  72.         </plugins>
  73.     </build>
  74.     <repositories>
  75.         <repository>
  76.             <id>eclipse-indigo</id>
  77.             <layout>p2</layout>
  78.             <url>http://download.eclipse.org/releases/indigo</url>
  79.         </repository>
  80.     </repositories>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement