pom.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  4. xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.yakindu.sct</groupId>
  8. <artifactId>org.yakindu.sct.releng</artifactId>
  9. <version>2.9.3-SNAPSHOT</version>
  10. <relativePath>../../releng/org.yakindu.sct.releng/pom.xml</relativePath>
  11. </parent>
  12. <artifactId>org.yakindu.sct.repository</artifactId>
  13. <packaging>eclipse-repository</packaging>
  14. <properties>
  15. <source.update.site>http://updates.yakindu.org/sct/releases</source.update.site>
  16. <target.update.site>target/repository</target.update.site>
  17. <tycho.extras.version>0.24.0</tycho.extras.version>
  18. </properties>
  19. <profiles>
  20. <profile>
  21. <id>CopySource</id>
  22. <activation>
  23. <property>
  24. <name>createComposite</name>
  25. <value>true</value>
  26. </property>
  27. </activation>
  28. <build>
  29. <plugins>
  30. <plugin>
  31. <groupId>org.eclipse.tycho.extras</groupId>
  32. <artifactId>tycho-p2-extras-plugin</artifactId>
  33. <version>${tycho.extras.version}</version>
  34. <inherited>false</inherited>
  35. <executions>
  36. <execution>
  37. <id>append</id>
  38. <phase>package</phase>
  39. <goals>
  40. <goal>mirror</goal>
  41. </goals>
  42. <configuration>
  43. <source>
  44. <repository>
  45. <url>${source.update.site}</url>
  46. <layout>p2</layout>
  47. </repository>
  48. </source>
  49. <destination>${target.update.site}</destination>
  50. <compress>true</compress>
  51. <append>true</append>
  52. </configuration>
  53. </execution>
  54. </executions>
  55. </plugin>
  56. </plugins>
  57. </build>
  58. </profile>
  59. </profiles>
  60. </project>