pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>bitrade-parent</artifactId>
  7. <groupId>com.bizzan.bitrade</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>wallet_udun</artifactId>
  12. <description>U盾钱包模块</description>
  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. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.alibaba</groupId>
  21. <artifactId>druid-spring-boot-starter</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.bizzan.bitrade</groupId>
  25. <artifactId>bipay-core</artifactId>
  26. <version>1.0-SNAPSHOT</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-data-jpa</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-devtools</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-data-redis</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>redis.clients</groupId>
  46. <artifactId>jedis</artifactId>
  47. <version>2.9.3</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.cloud</groupId>
  51. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.cloud</groupId>
  55. <artifactId>spring-cloud-starter-netflix-ribbon</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.kafka</groupId>
  59. <artifactId>spring-kafka</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-test</artifactId>
  64. <scope>test</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>mysql</groupId>
  68. <artifactId>mysql-connector-java</artifactId>
  69. </dependency>
  70. <!-- Logback -->
  71. <dependency>
  72. <groupId>ch.qos.logback</groupId>
  73. <artifactId>logback-core</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>ch.qos.logback</groupId>
  77. <artifactId>logback-classic</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.bizzan.bitrade</groupId>
  81. <artifactId>core</artifactId>
  82. <version>1.0-SNAPSHOT</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>io.reactivex</groupId>
  86. <artifactId>rxjava</artifactId>
  87. <version>1.3.4</version>
  88. </dependency>
  89. </dependencies>
  90. <build>
  91. <finalName>wallet_udun</finalName>
  92. <plugins>
  93. <plugin>
  94. <groupId>org.apache.maven.plugins</groupId>
  95. <artifactId>maven-compiler-plugin</artifactId>
  96. <version>3.7.0</version>
  97. <configuration>
  98. <source>1.8</source>
  99. <target>1.8</target>
  100. </configuration>
  101. </plugin>
  102. <plugin>
  103. <artifactId>maven-surefire-plugin</artifactId>
  104. <configuration>
  105. <skip>true</skip>
  106. </configuration>
  107. </plugin>
  108. <plugin>
  109. <groupId>org.springframework.boot</groupId>
  110. <artifactId>spring-boot-maven-plugin</artifactId>
  111. <executions>
  112. <execution>
  113. <goals>
  114. <goal>repackage</goal>
  115. </goals>
  116. </execution>
  117. </executions>
  118. <configuration>
  119. <includeSystemScope>true</includeSystemScope>
  120. </configuration>
  121. </plugin>
  122. </plugins>
  123. </build>
  124. </project>