Guest User

Untitled

a guest
Jan 20th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. <plugin>
  2. <groupId>org.eclipse.tycho</groupId>
  3. <artifactId>target-platform-configuration</artifactId>
  4. <version>${tycho-version}</version>
  5. <configuration>
  6. <!--
  7. <target>
  8. <artifact>
  9. <groupId>${project.groupId}</groupId>
  10. <artifactId>matiyari-osgi-parent</artifactId>
  11. <version>${project.version}</version>
  12. <classifier>matiyari-osgi.win32.win32.x36</classifier>
  13. </artifact>
  14. </target>
  15. -->
  16. <resolver>p2</resolver>
  17. <pomDependencies>consider</pomDependencies>
  18. <!-- configure the p2 target environments for multi-platform build -->
  19. <environments>
  20.  
  21. <environment>
  22. <os>linux</os>
  23. <ws>gtk</ws>
  24. <arch>x86</arch>
  25. </environment>
  26. <environment>
  27. <os>linux</os>
  28. <ws>gtk</ws>
  29. <arch>x86_64</arch>
  30. </environment>
  31. <environment>
  32. <os>win32</os>
  33. <ws>win32</ws>
  34. <arch>x86</arch>
  35. </environment>
  36.  
  37. <environment>
  38. <os>win32</os>
  39. <ws>win32</ws>
  40. <arch>x86_64</arch>
  41. </environment>
  42. <environment>
  43. <os>macosx</os>
  44. <ws>cocoa</ws>
  45. <arch>x86_64</arch>
  46. </environment>
  47. </environments>
  48. </configuration>
  49. </plugin>
Add Comment
Please, Sign In to add comment