pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project>
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <relativePath>../pom.xml</relativePath>
  6. <groupId>be.uantwerpen.ansymo.semanticadaptation</groupId>
  7. <artifactId>parent</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>be.uantwerpen.ansymo.semanticadaptation.cg.cpp</artifactId>
  11. <packaging>eclipse-plugin</packaging>
  12. <name>be.uantwerpen.ansymo.semanticadaptation Code Generation to C++</name>
  13. <properties>
  14. <main.basedir>${project.parent.basedir}</main.basedir>
  15. </properties>
  16. <dependencies>
  17. <!-- dependency>
  18. <groupId>be.uantwerpen.ansymo.semanticadaptation</groupId>
  19. <artifactId>be.uantwerpen.ansymo.semanticadaptation.cg.cpp.lib</artifactId>
  20. <type>jar</type>
  21. <version>${project.version}</version>
  22. <scope>compile</scope>
  23. </dependency-->
  24. <dependency>
  25. <groupId>be.uantwerpen.ansymo.semanticadaptation</groupId>
  26. <artifactId>
  27. be.uantwerpen.ansymo.semanticadaptation
  28. </artifactId>
  29. <version>1.0.0-SNAPSHOT</version>
  30. <type>eclipse-plugin</type>
  31. </dependency>
  32. </dependencies>
  33. <build>
  34. <plugins>
  35. <plugin>
  36. <groupId>org.eclipse.xtend</groupId>
  37. <artifactId>xtend-maven-plugin</artifactId>
  38. </plugin>
  39. <!-- plugin>
  40. <groupId>org.apache.maven.plugins</groupId>
  41. <artifactId>maven-dependency-plugin</artifactId>
  42. <executions>
  43. <execution>
  44. <id>copy</id>
  45. <phase>process-resources</phase>
  46. <goals>
  47. <goal>copy</goal>
  48. </goals>
  49. <configuration>
  50. <artifactItems>
  51. <artifactItem>
  52. <groupId>be.uantwerpen.ansymo.semanticadaptation</groupId>
  53. <artifactId>be.uantwerpen.ansymo.semanticadaptation.cg.cpp.lib</artifactId>
  54. <type>jar</type>
  55. <version>${project.version}</version>
  56. <overWrite>true</overWrite>
  57. <destFileName>cppFramework.jar</destFileName>
  58. </artifactItem>
  59. </artifactItems>
  60. <outputDirectory>${project.basedir}/jars</outputDirectory>
  61. <overWriteReleases>false</overWriteReleases>
  62. <overWriteSnapshots>false</overWriteSnapshots>
  63. <overWriteIfNewer>true</overWriteIfNewer>
  64. </configuration>
  65. </execution>
  66. </executions>
  67. </plugin-->
  68. </plugins>
  69. </build>
  70. </project>