pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.iotechn</groupId>
  8. <artifactId>unimall</artifactId>
  9. <version>0.0.1-RELEASE</version>
  10. </parent>
  11. <groupId>com.iotechn</groupId>
  12. <artifactId>unimall-launcher</artifactId>
  13. <version>0.0.1-RELEASE</version>
  14. <name>unimall-launcher</name>
  15. <description>unimall启动器</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <maven.deploy.skip>true</maven.deploy.skip>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>com.iotechn</groupId>
  23. <artifactId>unimall-app-api</artifactId>
  24. <version>0.0.1-RELEASE</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.iotechn</groupId>
  28. <artifactId>unimall-admin-api</artifactId>
  29. <version>0.0.1-RELEASE</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.iotechn</groupId>
  33. <artifactId>unimall-data</artifactId>
  34. <version>0.0.1-RELEASE</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.iotechn</groupId>
  38. <artifactId>unimall-biz</artifactId>
  39. <version>0.0.1-RELEASE</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.iotechn</groupId>
  43. <artifactId>unimall-core</artifactId>
  44. <version>0.0.1-RELEASE</version>
  45. </dependency>
  46. <!-- 获取用户浏览器信息 -->
  47. <dependency>
  48. <groupId>eu.bitwalker</groupId>
  49. <artifactId>UserAgentUtils</artifactId>
  50. <version>1.20</version>
  51. </dependency>
  52. <!-- 阿里云对象存储 -->
  53. <dependency>
  54. <groupId>com.aliyun.oss</groupId>
  55. <artifactId>aliyun-sdk-oss</artifactId>
  56. </dependency>
  57. <!-- 模板引擎 freemarker -->
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-freemarker</artifactId>
  61. </dependency>
  62. <!-- lombok 工具 -->
  63. <dependency>
  64. <groupId>org.projectlombok</groupId>
  65. <artifactId>lombok</artifactId>
  66. <version>1.18.4</version>
  67. <scope>provided</scope>
  68. </dependency>
  69. <!-- 阿里巴巴 json 解析 -->
  70. <dependency>
  71. <groupId>com.alibaba</groupId>
  72. <artifactId>fastjson</artifactId>
  73. </dependency>
  74. <!-- redis 依赖 -->
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-data-redis</artifactId>
  78. </dependency>
  79. <!-- 日志 -->
  80. <!--<dependency> -->
  81. <!--<groupId>org.springframework.boot</groupId> -->
  82. <!--<artifactId>spring-boot-starter-log4j2</artifactId> -->
  83. <!--</dependency> -->
  84. <!-- 模板引擎 freemarker -->
  85. <dependency>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-starter-freemarker</artifactId>
  88. </dependency>
  89. <!-- WEB -->
  90. <dependency>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-starter-web</artifactId>
  93. </dependency>
  94. <!-- spring boot -->
  95. <dependency>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-starter</artifactId>
  98. </dependency>
  99. <!-- 单元测试 -->
  100. <dependency>
  101. <groupId>org.springframework.boot</groupId>
  102. <artifactId>spring-boot-starter-test</artifactId>
  103. <scope>test</scope>
  104. </dependency>
  105. <!-- 引入本地jar -->
  106. <dependency>
  107. <groupId>com.dangdang.openplatform.openapi</groupId>
  108. <artifactId>sdk</artifactId>
  109. <version>1.0-SNAPSHOT</version>
  110. <scope>system</scope>
  111. <systemPath>${project.basedir}/src/main/lib/dangdang-open-sdk.jar</systemPath>
  112. </dependency>
  113. </dependencies>
  114. <build>
  115. <plugins>
  116. <plugin>
  117. <groupId>org.springframework.boot</groupId>
  118. <artifactId>spring-boot-maven-plugin</artifactId>
  119. <configuration>
  120. <executable>true</executable>
  121. <includeSystemScope>true</includeSystemScope>
  122. </configuration>
  123. <executions>
  124. <execution>
  125. <goals>
  126. <goal>repackage</goal>
  127. </goals>
  128. <configuration>
  129. <classifier>exec</classifier>
  130. </configuration>
  131. </execution>
  132. </executions>
  133. </plugin>
  134. </plugins>
  135. </build>
  136. </project>