pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <artifactId>litemall-core</artifactId>
  5. <packaging>jar</packaging>
  6. <parent>
  7. <groupId>org.linlinjava</groupId>
  8. <artifactId>litemall</artifactId>
  9. <version>0.1.0</version>
  10. </parent>
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.springframework.boot</groupId>
  14. <artifactId>spring-boot-starter-web</artifactId>
  15. </dependency>
  16. <dependency>
  17. <groupId>com.fasterxml.jackson.datatype</groupId>
  18. <artifactId>jackson-datatype-jsr310</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework</groupId>
  22. <artifactId>spring-context-support</artifactId>
  23. <version>RELEASE</version>
  24. <scope>compile</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.sun.mail</groupId>
  28. <artifactId>javax.mail</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.github.qcloudsms</groupId>
  32. <artifactId>qcloudsms</artifactId>
  33. <version>1.0.5</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.qcloud</groupId>
  37. <artifactId>cos_api</artifactId>
  38. <version>5.4.4</version>
  39. <exclusions>
  40. <exclusion>
  41. <artifactId>slf4j-log4j12</artifactId>
  42. <groupId>org.slf4j</groupId>
  43. </exclusion>
  44. </exclusions>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.aliyun.oss</groupId>
  48. <artifactId>aliyun-sdk-oss</artifactId>
  49. <version>2.5.0</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.github.binarywang</groupId>
  53. <artifactId>weixin-java-miniapp</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-configuration-processor</artifactId>
  58. <optional>true</optional>
  59. </dependency>
  60. </dependencies>
  61. <build>
  62. <resources>
  63. <resource>
  64. <directory>src/main/resources</directory>
  65. </resource>
  66. <resource>
  67. <directory>src/main/java</directory>
  68. <includes>
  69. <include>**/*.properties</include>
  70. <include>**/*.xml</include>
  71. </includes>
  72. <filtering>false</filtering>
  73. </resource>
  74. </resources>
  75. </build>
  76. </project>