pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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. <scope>provided</scope>
  67. </dependency>
  68. <!-- 阿里巴巴 json 解析 -->
  69. <dependency>
  70. <groupId>com.alibaba</groupId>
  71. <artifactId>fastjson</artifactId>
  72. </dependency>
  73. <!-- redis 依赖 -->
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-starter-data-redis</artifactId>
  77. </dependency>
  78. <!-- 日志 -->
  79. <!--<dependency> -->
  80. <!--<groupId>org.springframework.boot</groupId> -->
  81. <!--<artifactId>spring-boot-starter-log4j2</artifactId> -->
  82. <!--</dependency> -->
  83. <!-- 模板引擎 freemarker -->
  84. <dependency>
  85. <groupId>org.springframework.boot</groupId>
  86. <artifactId>spring-boot-starter-freemarker</artifactId>
  87. </dependency>
  88. <!-- WEB -->
  89. <dependency>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-starter-web</artifactId>
  92. </dependency>
  93. <!-- spring boot -->
  94. <dependency>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-starter</artifactId>
  97. </dependency>
  98. <!-- 单元测试 -->
  99. <dependency>
  100. <groupId>org.springframework.boot</groupId>
  101. <artifactId>spring-boot-starter-test</artifactId>
  102. <scope>test</scope>
  103. </dependency>
  104. <!-- 引入本地jar -->
  105. <dependency>
  106. <groupId>com.dangdang.openplatform.openapi</groupId>
  107. <artifactId>sdk</artifactId>
  108. <version>1.0-SNAPSHOT</version>
  109. <scope>system</scope>
  110. <systemPath>${project.basedir}/src/main/lib/dangdang-open-sdk.jar</systemPath>
  111. </dependency>
  112. </dependencies>
  113. <build>
  114. <plugins>
  115. <plugin>
  116. <groupId>org.springframework.boot</groupId>
  117. <artifactId>spring-boot-maven-plugin</artifactId>
  118. <configuration>
  119. <executable>true</executable>
  120. </configuration>
  121. <executions>
  122. <execution>
  123. <goals>
  124. <goal>repackage</goal>
  125. </goals>
  126. <configuration>
  127. <classifier>exec</classifier>
  128. </configuration>
  129. </execution>
  130. </executions>
  131. </plugin>
  132. </plugins>
  133. </build>
  134. </project>