pom.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?xml version="1.0" encoding="UTF-8"?><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. <artifactId>base-kie-project</artifactId>
  4. <groupId>org.kie.templates</groupId>
  5. <version>1.0.0</version>
  6. <packaging>kjar</packaging>
  7. <name>base-kie-project</name>
  8. <description>Base KIE project</description>
  9. <dependencies>
  10. <dependency>
  11. <groupId>org.kie</groupId>
  12. <artifactId>kie-api</artifactId>
  13. <version>7.59.0.Final-redhat-00006</version>
  14. <scope>provided</scope>
  15. </dependency>
  16. <dependency>
  17. <groupId>org.kie</groupId>
  18. <artifactId>kie-internal</artifactId>
  19. <version>7.59.0.Final-redhat-00006</version>
  20. <scope>provided</scope>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.optaplanner</groupId>
  24. <artifactId>optaplanner-core</artifactId>
  25. <version>7.59.0.Final-redhat-00006</version>
  26. <scope>provided</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.optaplanner</groupId>
  30. <artifactId>optaplanner-persistence-jaxb</artifactId>
  31. <version>7.59.0.Final-redhat-00006</version>
  32. <scope>provided</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>junit</groupId>
  36. <artifactId>junit</artifactId>
  37. <version>4.13.1</version>
  38. <scope>test</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.thoughtworks.xstream</groupId>
  42. <artifactId>xstream</artifactId>
  43. <version>1.4.18.redhat-00001</version>
  44. <scope>test</scope>
  45. </dependency>
  46. </dependencies>
  47. <build>
  48. <plugins>
  49. <plugin>
  50. <groupId>org.kie</groupId>
  51. <artifactId>kie-maven-plugin</artifactId>
  52. <version>7.59.0.Final-redhat-00006</version>
  53. <extensions>true</extensions>
  54. </plugin>
  55. </plugins>
  56. </build>
  57. </project>