pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>net.p0f.samples.rhpam-fuse-integration</groupId>
  6. <artifactId>pam-simple-process</artifactId>
  7. <version>1.0.0-SNAPSHOT</version>
  8. <packaging>kjar</packaging>
  9. <name>pam-simple-process</name>
  10. <description></description>
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.kie</groupId>
  14. <artifactId>kie-api</artifactId>
  15. <version>7.52.0.Final-redhat-00008</version>
  16. <scope>provided</scope>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.kie</groupId>
  20. <artifactId>kie-internal</artifactId>
  21. <version>7.52.0.Final-redhat-00008</version>
  22. <scope>provided</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.optaplanner</groupId>
  26. <artifactId>optaplanner-core</artifactId>
  27. <version>7.52.0.Final-redhat-00008</version>
  28. <scope>provided</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.optaplanner</groupId>
  32. <artifactId>optaplanner-persistence-jaxb</artifactId>
  33. <version>7.52.0.Final-redhat-00008</version>
  34. <scope>provided</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>junit</groupId>
  38. <artifactId>junit</artifactId>
  39. <version>4.13.1</version>
  40. <scope>test</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.thoughtworks.xstream</groupId>
  44. <artifactId>xstream</artifactId>
  45. <version>1.4.16.redhat-00001</version>
  46. <scope>test</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>net.p0f.samples.rhpam-fuse-integration</groupId>
  50. <artifactId>shared-data-model</artifactId>
  51. <version>1.0.0</version>
  52. </dependency>
  53. </dependencies>
  54. <build>
  55. <plugins>
  56. <plugin>
  57. <groupId>org.kie</groupId>
  58. <artifactId>kie-maven-plugin</artifactId>
  59. <version>7.52.0.Final-redhat-00008</version>
  60. <extensions>true</extensions>
  61. </plugin>
  62. </plugins>
  63. </build>
  64. </project>