pom.xml 3.8 KB

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