Advertisement
Guest User

Untitled

a guest
Feb 16th, 2017
303
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.98 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>cd-editor.dependencies</groupId>
  4. <artifactId>cd-editor.dependencies.parent</artifactId>
  5. <version>1.0.0-SNAPSHOT</version>
  6. <name>cd-editor.dependencies.parent</name>
  7. <packaging>pom</packaging>
  8. <parent>
  9. <groupId>com.ericsson.commonlibrary</groupId>
  10. <artifactId>cl-parent</artifactId>
  11. <version>1.1.5</version>
  12. </parent>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <site.scp>scp://copyserver.rnd.ki.sw.ericsson.se/proj/webdocs/common-jcat-site/root/site/</site.scp>
  16. <java.version>1.8</java.version>
  17. <compiler.source.java.version>${java.version}</compiler.source.java.version>
  18. <compiler.target.java.version>${java.version}</compiler.target.java.version>
  19. <compiler.compliance.java.version>${java.version}</compiler.compliance.java.version>
  20. <tycho-version>1.0.0</tycho-version>
  21. </properties>
  22.  
  23.  
  24. <modules>
  25. <module>../targetFile</module>
  26. <module>../../cd-editor-eclipse-ui</module>
  27. <module>../</module>
  28. </modules>
  29.  
  30. <build>
  31. <plugins>
  32. <plugin>
  33. <groupId>org.eclipse.tycho</groupId>
  34. <artifactId>tycho-maven-plugin</artifactId>
  35. <version>${tycho-version}</version>
  36. <configuration>
  37. </configuration>
  38. <extensions>true</extensions>
  39. </plugin>
  40. <plugin>
  41. <groupId>org.eclipse.tycho</groupId>
  42. <artifactId>target-platform-configuration</artifactId>
  43.  
  44. <version>${tycho-version}</version>
  45. <configuration>
  46. <pomDependencies>consider</pomDependencies>
  47. <includePackedArtifacts>true</includePackedArtifacts>
  48. <environments>
  49. <environment>
  50. <os>win32</os>
  51. <ws>win32</ws>
  52. <arch>x86</arch>
  53. </environment>
  54. <environment>
  55. <os>win32</os>
  56. <ws>win32</ws>
  57. <arch>x86_64</arch>
  58. </environment>
  59. <environment>
  60. <os>linux</os>
  61. <ws>gtk</ws>
  62. <arch>x86</arch>
  63. </environment>
  64. <environment>
  65. <os>linux</os>
  66. <ws>gtk</ws>
  67. <arch>x86_64</arch>
  68. </environment>
  69. </environments>
  70. <target>
  71. <artifact>
  72. <groupId>cd-editor.dependencies</groupId>
  73. <artifactId>cd-editor.dependencies.target</artifactId>
  74. <classifier>RunningPlatform</classifier>
  75. <version>1.0.0-SNAPSHOT</version>
  76. </artifact>
  77. </target>
  78. </configuration>
  79. </plugin>
  80. </plugins>
  81. </build>
  82. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement