Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. <parent>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-parent</artifactId>
  4. <version>2.1.4.RELEASE</version>
  5. </parent>
  6.  
  7. <dependencies>
  8. <dependency>
  9. <groupId>org.springframework.boot</groupId>
  10. <artifactId>spring-boot-starter-web</artifactId>
  11. </dependency>
  12.  
  13. <dependency>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-data-jpa</artifactId>
  16. </dependency>
  17.  
  18. <dependency>
  19. <groupId>com.oracle</groupId>
  20. <artifactId>ojdbc14</artifactId>
  21. <version>10.2.0.4</version>
  22. </dependency>
  23.  
  24. <dependency>
  25. <groupId>com.itextpdf</groupId>
  26. <artifactId>itextpdf</artifactId>
  27. <version>5.0.6</version>
  28. </dependency>
  29.  
  30. <dependency>
  31. <groupId>org.apache.camel</groupId>
  32. <artifactId>camel-spring-boot-starter</artifactId>
  33. <version>2.17.0</version>
  34. </dependency>
  35.  
  36. <dependency>
  37. <groupId>org.apache.camel</groupId>
  38. <artifactId>camel-stream</artifactId>
  39. <version>2.17.0</version>
  40. </dependency>
  41.  
  42. <dependency>
  43. <groupId>org.apache.camel</groupId>
  44. <artifactId>camel-ftp</artifactId>
  45. <version>2.15.0</version>
  46. </dependency>
  47.  
  48. </dependencies>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement