Advertisement
Guest User

strale

a guest
Jun 22nd, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.86 KB | None | 0 0
  1. <!-- -->
  2. <build>
  3. <plugins>
  4. <plugin>
  5. <groupId>org.apache.maven.plugins</groupId>
  6. <artifactId>maven-compiler-plugin</artifactId>
  7. <version>3.7.0</version>
  8. <configuration>
  9. <!-- http://maven.apache.org/plugins/maven-compiler-plugin/ -->
  10. <source>1.8</source>
  11. <target>1.8</target>
  12. </configuration>
  13. </plugin>
  14. <plugin>
  15. <groupId>org.apache.maven.plugins</groupId>
  16. <artifactId>maven-war-plugin</artifactId>
  17. <version>3.0.0</version>
  18. <configuration>
  19. <failOnMissingWebXml>false</failOnMissingWebXml>
  20. </configuration>
  21. </plugin>
  22. </plugins>
  23. </build>
  24.  
  25. <properties>
  26. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  27. <spring.version>5.0.4.RELEASE</spring.version>
  28. <spring.data.version>2.0.5.RELEASE</spring.data.version>
  29. <jackson.version>2.9.5</jackson.version>
  30. </properties>
  31.  
  32. <dependencies>
  33. <dependency>
  34. <groupId>junit</groupId>
  35. <artifactId>junit</artifactId>
  36. <version>3.8.1</version>
  37. <scope>test</scope>
  38. </dependency>
  39.  
  40. <!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
  41. <dependency>
  42. <groupId>org.springframework</groupId>
  43. <artifactId>spring-webmvc</artifactId>
  44. <version>${spring.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.data</groupId>
  48. <artifactId>spring-data-jpa</artifactId>
  49. <version>${spring.data.version}</version>
  50. </dependency>
  51.  
  52. <!-- JPA Provider (Hibernate) -->
  53. <dependency>
  54. <groupId>org.hibernate</groupId>
  55. <artifactId>hibernate-core</artifactId>
  56. <version>5.2.16.Final</version>
  57. </dependency>
  58.  
  59. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
  60. <dependency>
  61. <groupId>com.fasterxml.jackson.core</groupId>
  62. <artifactId>jackson-databind</artifactId>
  63. <version>${jackson.version}</version>
  64. </dependency>
  65.  
  66. <!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
  67. <dependency>
  68. <groupId>javax.servlet</groupId>
  69. <artifactId>javax.servlet-api</artifactId>
  70. <version>3.1.0</version>
  71. <scope>provided</scope>
  72. </dependency>
  73.  
  74. <!-- MySQL -->
  75. <dependency>
  76. <groupId>mysql</groupId>
  77. <artifactId>mysql-connector-java</artifactId>
  78. <version>6.0.6</version>
  79. </dependency>
  80.  
  81.  
  82. <!-- HikariCP - Connection Pool -->
  83. <dependency>
  84. <groupId>com.zaxxer</groupId>
  85. <artifactId>HikariCP</artifactId>
  86. <version>2.7.8</version>
  87. </dependency>
  88.  
  89. <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
  90. <dependency>
  91. <groupId>org.projectlombok</groupId>
  92. <artifactId>lombok</artifactId>
  93. <version>1.16.20</version>
  94. </dependency>
  95.  
  96. </dependencies>
  97.  
  98. <!-- -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement