pom.xml 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  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/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>be.uantwerpen.ansymo.semanticadaptation</groupId>
  6. <artifactId>parent</artifactId>
  7. <version>1.0.0-SNAPSHOT</version>
  8. <relativePath>../pom.xml</relativePath>
  9. </parent>
  10. <packaging>eclipse-repository</packaging>
  11. <groupId>be.uantwerpen.ansymo.semanticadaptation</groupId>
  12. <artifactId>be.uantwerpen.ansymo.semanticadaptation.repository</artifactId>
  13. <name>Semantics Adaptation IDE Eclipse repository</name>
  14. <build>
  15. <plugins>
  16. <plugin>
  17. <groupId>org.eclipse.tycho</groupId>
  18. <artifactId>tycho-p2-repository-plugin</artifactId>
  19. <version>${tycho.version}</version>
  20. <configuration>
  21. <includeAllDependencies>true</includeAllDependencies>
  22. </configuration>
  23. </plugin>
  24. </plugins>
  25. </build>
  26. </project>