Advertisement
Guest User

Paste

a guest
Jul 17th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.42 KB | None | 0 0
  1. <repositories>
  2. <repository>
  3. <id>spring-plugins</id>
  4. <name>spring-plugins</name>
  5. <url>http://repo.spring.io/plugins-release/</url>
  6. </repository>
  7. </repositories>
  8.  
  9. <dependencies>
  10. <dependency>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter</artifactId>
  13. </dependency>
  14. <dependency>
  15. <groupId>javax.xml.bind</groupId>
  16. <artifactId>jaxb-api</artifactId>
  17. <version>2.3.0</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.postgresql</groupId>
  21. <artifactId>postgresql</artifactId>
  22. <version>9.4-1206-jdbc42</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.hibernate</groupId>
  26. <artifactId>hibernate-core</artifactId>
  27. <version>5.2.12.Final</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-test</artifactId>
  32. <scope>test</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.hibernate</groupId>
  36. <artifactId>hibernate-core</artifactId>
  37. <version>5.2.12.Final</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-web</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-devtools</artifactId>
  50. <scope>runtime</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-data-jpa</artifactId>
  55. </dependency>
  56.  
  57. <dependency>
  58. <groupId>org.springframework.data</groupId>
  59. <artifactId>spring-data-redis</artifactId>
  60. <version>2.0.3.RELEASE</version>
  61. </dependency>
  62.  
  63. <dependency>
  64. <groupId>redis.clients</groupId>
  65. <artifactId>jedis</artifactId>
  66. <version>2.9.0</version>
  67. <type>jar</type>
  68. </dependency>
  69. </dependencies>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement