Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.42 KB | None | 0 0
  1. <!-- INI CODINGAN TAMBAHAN-->
  2. <!-- ++++++START HERE_++++-->
  3. <dependency>
  4. <groupId>org.springframework.boot</groupId>
  5. <artifactId>spring-boot-starter-actuator</artifactId>
  6. </dependency>
  7.  
  8. <dependency>
  9. <groupId>org.springframework.boot</groupId>
  10. <artifactId>spring-boot-starter-cache</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>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-web</artifactId>
  21. </dependency>
  22.  
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  26. </dependency>
  27.  
  28. <dependency>
  29. <groupId>org.hsqldb</groupId>
  30. <artifactId>hsqldb</artifactId>
  31. <scope>runtime</scope>
  32. </dependency>
  33.  
  34. <dependency>
  35. <groupId>mysql</groupId>
  36. <artifactId>mysql-connector-java</artifactId>
  37. <scope>runtime</scope>
  38. </dependency>
  39.  
  40. <!-- caching -->
  41. <dependency>
  42. <groupId>javax.cache</groupId>
  43. <artifactId>cache-api</artifactId>
  44. </dependency>
  45.  
  46. <dependency>
  47. <groupId>org.ehcache</groupId>
  48. <artifactId>ehcache</artifactId>
  49. </dependency>
  50.  
  51. <!-- webjars -->
  52. <dependency>
  53. <groupId>org.webjars</groupId>
  54. <artifactId>webjars-locator-core</artifactId>
  55. </dependency>
  56.  
  57. <dependency>
  58. <groupId>org.webjars</groupId>
  59. <artifactId>jquery</artifactId>
  60. <version>${webjars-jquery.version}</version>
  61. </dependency>
  62.  
  63. <dependency>
  64. <groupId>org.webjars</groupId>
  65. <artifactId>jquery-ui</artifactId>
  66. <version>${webjars-jquery-ui-version}</version>
  67. </dependency>
  68.  
  69. <dependency>
  70. <groupId>org.webjars</groupId>
  71. <artifactId>bootstrap</artifactId>
  72. <version>${webjars-bootstrap.version}</version>
  73. </dependency>
  74. <!-- end of webjars -->
  75.  
  76. <dependency>
  77. <groupId>org.springframework.boot</groupId>
  78. <artifactId>spring-boot-devtools</artifactId>
  79. <optional>true</optional>
  80. </dependency>
  81.  
  82. <!-- testing framework -->
  83. <dependency>
  84. <groupId>io.rest-assured</groupId>
  85. <artifactId>rest-assured</artifactId>
  86. <version>3.0.0</version>
  87. <scope>test</scope>
  88. </dependency>
  89.  
  90. <dependency>
  91. <groupId>org.hamcrest</groupId>
  92. <artifactId>hamcrest-all</artifactId>
  93. <version>1.3</version>
  94. </dependency>
  95. <!-- ++++++END HERE_++++-->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement