pom.xml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>com.up.sell</groupId>
  4. <artifactId>up-sell-scheduler</artifactId>
  5. <version>0.0.1-SNAPSHOT</version>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.0.4.RELEASE</version>
  10. <relativePath />
  11. </parent>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  15. <java.version>1.8</java.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-web</artifactId>
  21. <exclusions>
  22. <exclusion>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-logging</artifactId>
  25. </exclusion>
  26. </exclusions>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-test</artifactId>
  31. <scope>test</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-log4j2</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.mybatis.spring.boot</groupId>
  39. <artifactId>mybatis-spring-boot-starter</artifactId>
  40. <version>1.3.2</version>
  41. </dependency>
  42. <!-- 访问静态资源. -->
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  46. </dependency>
  47. <!-- cache -->
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-cache</artifactId>
  51. </dependency>
  52. <!-- redis -->
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-data-redis</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-aop</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>mysql</groupId>
  63. <artifactId>mysql-connector-java</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.alibaba</groupId>
  67. <artifactId>druid</artifactId>
  68. <version>1.1.10</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.mybatis.generator</groupId>
  72. <artifactId>mybatis-generator-core</artifactId>
  73. <version>1.3.6</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.googlecode.rapid-framework</groupId>
  77. <artifactId>rapid-core</artifactId>
  78. <version>4.0.5</version>
  79. </dependency>
  80. <!-- https://mvnrepository.com/artifact/commons-lang/commons-lang -->
  81. <dependency>
  82. <groupId>commons-lang</groupId>
  83. <artifactId>commons-lang</artifactId>
  84. <version>2.6</version>
  85. </dependency>
  86. <!-- https://mvnrepository.com/artifact/commons-configuration/commons-configuration -->
  87. <dependency>
  88. <groupId>commons-configuration</groupId>
  89. <artifactId>commons-configuration</artifactId>
  90. <version>1.10</version>
  91. </dependency>
  92. <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
  93. <dependency>
  94. <groupId>commons-codec</groupId>
  95. <artifactId>commons-codec</artifactId>
  96. </dependency>
  97. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  98. <dependency>
  99. <groupId>commons-io</groupId>
  100. <artifactId>commons-io</artifactId>
  101. <version>2.6</version>
  102. </dependency>
  103. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-pool2 -->
  104. <dependency>
  105. <groupId>org.apache.commons</groupId>
  106. <artifactId>commons-pool2</artifactId>
  107. </dependency>
  108. <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
  109. <dependency>
  110. <groupId>com.alibaba</groupId>
  111. <artifactId>fastjson</artifactId>
  112. <version>1.2.28</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.springframework.boot</groupId>
  116. <artifactId>spring-boot-devtools</artifactId>
  117. <optional>true</optional>
  118. </dependency>
  119. <!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on -->
  120. <dependency>
  121. <groupId>org.bouncycastle</groupId>
  122. <artifactId>bcprov-jdk15on</artifactId>
  123. <version>1.60</version>
  124. </dependency>
  125. </dependencies>
  126. <build>
  127. <finalName>up-sell-scheduler</finalName>
  128. <plugins>
  129. <plugin>
  130. <groupId>org.springframework.boot</groupId>
  131. <artifactId>spring-boot-maven-plugin</artifactId>
  132. <configuration>
  133. <mainClass>com.up.sell.run.UpSpringApplication</mainClass>
  134. </configuration>
  135. </plugin>
  136. </plugins>
  137. </build>
  138. </project>