pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.redhat.training</groupId>
  6. <artifactId>order-offer-staged</artifactId>
  7. <version>1.0.0-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <name>order-offer-staged</name>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <maven.compiler.source>11</maven.compiler.source>
  13. <maven.compiler.target>11</maven.compiler.target>
  14. <kie.version>7.59.0.Final-redhat-00010</kie.version>
  15. </properties>
  16. <dependencyManagement>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.kie</groupId>
  20. <artifactId>kie-bom</artifactId>
  21. <version>${kie.version}</version>
  22. <type>pom</type>
  23. <scope>import</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.drools</groupId>
  27. <artifactId>drools-bom</artifactId>
  28. <version>${kie.version}</version>
  29. <type>pom</type>
  30. <scope>import</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.jbpm</groupId>
  34. <artifactId>jbpm-bom</artifactId>
  35. <version>${kie.version}</version>
  36. <type>pom</type>
  37. <scope>import</scope>
  38. </dependency>
  39. </dependencies>
  40. </dependencyManagement>
  41. <dependencies>
  42. <dependency>
  43. <groupId>org.kie</groupId>
  44. <artifactId>kie-api</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.drools</groupId>
  48. <artifactId>drools-compiler</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.drools</groupId>
  52. <artifactId>drools-mvel</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.drools</groupId>
  56. <artifactId>drools-decisiontables</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.jbpm</groupId>
  60. <artifactId>jbpm-bpmn2</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>junit</groupId>
  64. <artifactId>junit</artifactId>
  65. <version>4.11</version>
  66. <scope>test</scope>
  67. </dependency>
  68. </dependencies>
  69. <build>
  70. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  71. <plugins>
  72. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  73. <plugin>
  74. <artifactId>maven-clean-plugin</artifactId>
  75. <version>3.1.0</version>
  76. </plugin>
  77. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  78. <plugin>
  79. <artifactId>maven-resources-plugin</artifactId>
  80. <version>3.0.2</version>
  81. </plugin>
  82. <plugin>
  83. <artifactId>maven-compiler-plugin</artifactId>
  84. <version>3.8.0</version>
  85. </plugin>
  86. <plugin>
  87. <artifactId>maven-surefire-plugin</artifactId>
  88. <version>2.22.1</version>
  89. </plugin>
  90. <plugin>
  91. <artifactId>maven-jar-plugin</artifactId>
  92. <version>3.0.2</version>
  93. </plugin>
  94. <plugin>
  95. <artifactId>maven-install-plugin</artifactId>
  96. <version>2.5.2</version>
  97. </plugin>
  98. <plugin>
  99. <artifactId>maven-deploy-plugin</artifactId>
  100. <version>2.8.2</version>
  101. </plugin>
  102. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  103. <plugin>
  104. <artifactId>maven-site-plugin</artifactId>
  105. <version>3.7.1</version>
  106. </plugin>
  107. <plugin>
  108. <artifactId>maven-project-info-reports-plugin</artifactId>
  109. <version>3.0.0</version>
  110. </plugin>
  111. <!-- <plugin>
  112. <groupId>org.kie</groupId>
  113. <artifactId>kie-maven-plugin</artifactId>
  114. <version>${kie.version}</version>
  115. </plugin> -->
  116. </plugins>
  117. </pluginManagement>
  118. </build>
  119. </project>