pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.2.1.RELEASE</version>
  9. <!--<version>2.0.4.RELEASE</version>-->
  10. <relativePath/> <!-- lookup parent from repository -->
  11. </parent>
  12. <groupId>com.allpay</groupId>
  13. <artifactId>charge</artifactId>
  14. <version>0.0.1-SNAPSHOT</version>
  15. <packaging>jar</packaging>
  16. <name>charge</name>
  17. <description>Allpay charge</description>
  18. <properties>
  19. <java.version>1.8</java.version>
  20. <spring-security-oauth.version>2.0.16.RELEASE</spring-security-oauth.version>
  21. <spring-security-jwt.version>1.0.9.RELEASE</spring-security-jwt.version>
  22. </properties>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-web</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>mysql</groupId>
  30. <artifactId>mysql-connector-java</artifactId>
  31. <scope>runtime</scope>
  32. <version>8.0.18</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.alibaba</groupId>
  36. <artifactId>fastjson</artifactId>
  37. <version>1.2.49</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.projectlombok</groupId>
  41. <artifactId>lombok</artifactId>
  42. <optional>true</optional>
  43. </dependency>
  44. <!-- spring-security-->
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-security</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.security.oauth</groupId>
  51. <artifactId>spring-security-oauth2</artifactId>
  52. <version>${spring-security-oauth.version}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.security</groupId>
  56. <artifactId>spring-security-jwt</artifactId>
  57. <version>${spring-security-jwt.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-starter-aop</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>cn.hutool</groupId>
  65. <artifactId>hutool-all</artifactId>
  66. <version>4.6.1</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>commons-lang</groupId>
  70. <artifactId>commons-lang</artifactId>
  71. <version>2.6</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-starter-test</artifactId>
  76. <scope>test</scope>
  77. <exclusions>
  78. <exclusion>
  79. <groupId>org.junit.vintage</groupId>
  80. <artifactId>junit-vintage-engine</artifactId>
  81. </exclusion>
  82. </exclusions>
  83. </dependency>
  84. <dependency>
  85. <groupId>log4j</groupId>
  86. <artifactId>log4j</artifactId>
  87. <version>1.2.17</version>
  88. <type>jar</type>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.json</groupId>
  92. <artifactId>json</artifactId>
  93. <version>20180813</version>
  94. <type>jar</type>
  95. </dependency>
  96. <!--<dependency>-->
  97. <!--<groupId>org.eclipse.persistence</groupId>-->
  98. <!--<artifactId>org.eclipse.persistence.core</artifactId>-->
  99. <!--<version>2.5.2</version>-->
  100. <!--</dependency>-->
  101. <!--<dependency>-->
  102. <!--<groupId>org.eclipse.persistence</groupId>-->
  103. <!--<artifactId>org.eclipse.persistence.asm</artifactId>-->
  104. <!--<version>2.5.2</version>-->
  105. <!--</dependency>-->
  106. <!--<dependency>-->
  107. <!--<groupId>org.eclipse.persistence</groupId>-->
  108. <!--<artifactId>org.eclipse.persistence.antlr</artifactId>-->
  109. <!--<version>2.5.2</version>-->
  110. <!--</dependency>-->
  111. <dependency>
  112. <groupId>org.eclipse.persistence</groupId>
  113. <artifactId>org.eclipse.persistence.jpa</artifactId>
  114. <version>2.5.2</version>
  115. </dependency>
  116. <!--<dependency>-->
  117. <!--<groupId>org.eclipse.persistence</groupId>-->
  118. <!--<artifactId>org.eclipse.persistence.jpa.jpql</artifactId>-->
  119. <!--<version>2.5.2</version>-->
  120. <!--</dependency>-->
  121. <dependency>
  122. <groupId>org.eclipse.persistence</groupId>
  123. <artifactId>javax.persistence</artifactId>
  124. <version>2.1.0</version>
  125. </dependency>
  126. <!--<dependency>-->
  127. <!--<groupId>org.eclipse.persistence</groupId>-->
  128. <!--<artifactId>org.eclipse.persistence.jpa.modelgen.processor</artifactId>-->
  129. <!--<version>2.5.2</version>-->
  130. <!--<scope>provided</scope>-->
  131. <!--</dependency>-->
  132. </dependencies>
  133. <build>
  134. <plugins>
  135. <plugin>
  136. <groupId>org.springframework.boot</groupId>
  137. <artifactId>spring-boot-maven-plugin</artifactId>
  138. </plugin>
  139. </plugins>
  140. </build>
  141. </project>