Advertisement
Guest User

Pom

a guest
May 26th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. <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. <groupId>dsic.upv.es.DroolsCamunda</groupId>
  4. <artifactId>DroolsCamunda</artifactId>
  5. <version>0.0.1-SNAPSHOT</version>
  6. <packaging>war</packaging>
  7. <name>DroolsCamunda</name>
  8. <dependencyManagement>
  9. <dependencies>
  10. <dependency>
  11. <groupId>org.camunda.bpm</groupId>
  12. <artifactId>camunda-bom</artifactId>
  13. <version>7.10.0</version>
  14. <scope>import</scope>
  15. <type>pom</type>
  16. </dependency>
  17. </dependencies>
  18. </dependencyManagement>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.camunda.bpm</groupId>
  22. <artifactId>camunda-engine</artifactId>
  23. <scope>provided</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>javax.servlet</groupId>
  27. <artifactId>javax.servlet-api</artifactId>
  28. <version>3.0.1</version>
  29. <scope>provided</scope>
  30. </dependency>
  31. <!-- https://mvnrepository.com/artifact/org.drools/drools-core -->
  32. <dependency>
  33. <groupId>org.drools</groupId>
  34. <artifactId>drools-core</artifactId>
  35. <version>7.20.0.Final</version>
  36. </dependency>
  37. <!-- https://mvnrepository.com/artifact/org.drools/drools-compiler -->
  38. <dependency>
  39. <groupId>org.drools</groupId>
  40. <artifactId>drools-compiler</artifactId>
  41. <version>7.20.0.Final</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.kie</groupId>
  45. <artifactId>kie-api</artifactId>
  46. <version>7.20.0.Final</version>
  47. </dependency>
  48. </dependencies>
  49. <build>
  50. <plugins>
  51. <plugin>
  52. <groupId>org.apache.maven.plugins</groupId>
  53. <artifactId>maven-war-plugin</artifactId>
  54. <version>2.3</version>
  55. <configuration>
  56. <failOnMissingWebXml>false</failOnMissingWebXml>
  57. </configuration>
  58. </plugin>
  59. <plugin>
  60. <artifactId>maven-compiler-plugin</artifactId>
  61. <configuration>
  62. <source>1.7</source>
  63. <target>1.7</target>
  64. <skip>true</skip>
  65. </configuration>
  66. </plugin>
  67. </plugins>
  68. </build>
  69. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement