pom.xml 3.8 KB

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