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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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>commons-fileupload</groupId>
  63. <artifactId>commons-fileupload</artifactId>
  64. <version>1.3.1</version>
  65. </dependency>
  66. <!--<dependency>-->
  67. <!--<groupId>com.h2database</groupId>-->
  68. <!--<artifactId>h2</artifactId>-->
  69. <!--</dependency>-->
  70. <!--<dependency>-->
  71. <!--<groupId>org.hibernate</groupId>-->
  72. <!--<artifactId>hibernate-core</artifactId>-->
  73. <!--<version>4.1.4.Final</version>-->
  74. <!--</dependency>-->
  75. <!--<dependency>-->
  76. <!--<groupId>org.hibernate</groupId>-->
  77. <!--<artifactId>hibernate-entitymanager</artifactId>-->
  78. <!--<version>5.2.3.Final</version>-->
  79. <!--</dependency>-->
  80. </dependencies>
  81. <build>
  82. <plugins>
  83. <plugin>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-maven-plugin</artifactId>
  86. </plugin>
  87. </plugins>
  88. </build>
  89. </project>