Advertisement
Guest User

Untitled

a guest
Nov 12th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.26 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>org.springframework.boot</groupId>
  6. <artifactId>spring-boot-starter-parent</artifactId>
  7. <version>2.1.3.RELEASE</version>
  8. </parent>
  9. <groupId>com.example</groupId>
  10. <artifactId>leaderboard</artifactId>
  11. <version>0.0.1</version>
  12. <name>Leaderboard</name>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  16. <java.version>1.8</java.version>
  17. <maven.compiler.source>${java.version}</maven.compiler.source>
  18. <maven.compiler.target>${java.version}</maven.compiler.target>
  19. <spring.boot.version>2.1.3.RELEASE</spring.boot.version>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-web</artifactId>
  25. <version>${spring.boot.version}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.webjars</groupId>
  29. <artifactId>bootstrap</artifactId>
  30. <version>4.3.1</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.webjars</groupId>
  34. <artifactId>jquery</artifactId>
  35. <version>3.3.1</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.projectlombok</groupId>
  39. <artifactId>lombok</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  44. <version>${spring.boot.version}</version>
  45. </dependency>
  46. </dependencies>
  47. <dependencyManagement>
  48. <dependencies>
  49. <dependency>
  50. <groupId>redis.clients</groupId>
  51. <artifactId>jedis</artifactId>
  52. <version>2.9.0</version>
  53. <type>jar</type>
  54. <scope>compile</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.google.cloud</groupId>
  58. <artifactId>google-cloud-redis</artifactId>
  59. <version>0.116.0-alpha</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>redis.clients</groupId>
  63. <artifactId>jedis</artifactId>
  64. <version>3.1.0-m4</version>
  65. </dependency>
  66. <dependency>
  67. <!-- Import dependency management from Spring Boot -->
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-dependencies</artifactId>
  70. <version>${spring.boot.version}</version>
  71. <type>pom</type>
  72. <scope>import</scope>
  73. </dependency>
  74. </dependencies>
  75. </dependencyManagement>
  76. <build>
  77. <plugins>
  78. <plugin>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-maven-plugin</artifactId>
  81. </plugin>
  82. </plugins>
  83. </build>
  84. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement