"the most beautiful thought is always besides the darkest .. "

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.passionproject</groupId>
  6. <artifactId>project_spitball2.0</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <name>project_spitball2.0</name>
  10. <description>Demo project for Spring Boot</description>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>2.0.3.RELEASE</version>
  15. <relativePath/> <!-- lookup parent from repository -->
  16. </parent>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <java.version>1.8</java.version>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-web</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-test</artifactId>
  30. <scope>test</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-data-jpa</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>mysql</groupId>
  38. <artifactId>mysql-connector-java</artifactId>
  39. <scope>runtime</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.security</groupId>
  43. <artifactId>spring-security-core</artifactId>
  44. <version>5.0.6.RELEASE</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>io.jsonwebtoken</groupId>
  48. <artifactId>jjwt</artifactId>
  49. <version>0.2</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.security</groupId>
  53. <artifactId>spring-security-web</artifactId>
  54. <version>5.0.6.RELEASE</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.security</groupId>
  58. <artifactId>spring-security-config</artifactId>
  59. <version>5.0.6.RELEASE</version>
  60. </dependency>
  61. <!--<dependency>-->
  62. <!--<groupId>com.h2database</groupId>-->
  63. <!--<artifactId>h2</artifactId>-->
  64. <!--</dependency>-->
  65. <!--<dependency>-->
  66. <!--<groupId>org.hibernate</groupId>-->
  67. <!--<artifactId>hibernate-core</artifactId>-->
  68. <!--<version>4.1.4.Final</version>-->
  69. <!--</dependency>-->
  70. <!--<dependency>-->
  71. <!--<groupId>org.hibernate</groupId>-->
  72. <!--<artifactId>hibernate-entitymanager</artifactId>-->
  73. <!--<version>5.2.3.Final</version>-->
  74. <!--</dependency>-->
  75. </dependencies>
  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>