pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.iotechn</groupId>
  7. <artifactId>unimall</artifactId>
  8. <version>0.0.1-RELEASE</version>
  9. </parent>
  10. <groupId>com.iotechn</groupId>
  11. <artifactId>unimall-launcher</artifactId>
  12. <version>0.0.1-RELEASE</version>
  13. <name>unimall-launcher</name>
  14. <description>unimall启动器</description>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. <maven.deploy.skip>true</maven.deploy.skip>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>com.iotechn</groupId>
  22. <artifactId>unimall-app-api</artifactId>
  23. <version>0.0.1-RELEASE</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.iotechn</groupId>
  27. <artifactId>unimall-admin-api</artifactId>
  28. <version>0.0.1-RELEASE</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.iotechn</groupId>
  32. <artifactId>unimall-data</artifactId>
  33. <version>0.0.1-RELEASE</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.iotechn</groupId>
  37. <artifactId>unimall-biz</artifactId>
  38. <version>0.0.1-RELEASE</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.iotechn</groupId>
  42. <artifactId>unimall-core</artifactId>
  43. <version>0.0.1-RELEASE</version>
  44. </dependency>
  45. <!-- 阿里云对象存储 -->
  46. <dependency>
  47. <groupId>com.aliyun.oss</groupId>
  48. <artifactId>aliyun-sdk-oss</artifactId>
  49. </dependency>
  50. <!-- 模板引擎 freemarker -->
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-freemarker</artifactId>
  54. </dependency>
  55. <!-- lombok 工具 -->
  56. <dependency>
  57. <groupId>org.projectlombok</groupId>
  58. <artifactId>lombok</artifactId>
  59. <scope>provided</scope>
  60. </dependency>
  61. <!-- 阿里巴巴 json 解析 -->
  62. <dependency>
  63. <groupId>com.alibaba</groupId>
  64. <artifactId>fastjson</artifactId>
  65. </dependency>
  66. <!-- redis 依赖 -->
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-starter-data-redis</artifactId>
  70. </dependency>
  71. <!-- 日志 -->
  72. <!--<dependency>-->
  73. <!--<groupId>org.springframework.boot</groupId>-->
  74. <!--<artifactId>spring-boot-starter-log4j2</artifactId>-->
  75. <!--</dependency>-->
  76. <!-- 模板引擎 freemarker -->
  77. <!-- <dependency>-->
  78. <!-- <groupId>org.springframework.boot</groupId>-->
  79. <!-- <artifactId>spring-boot-starter-freemarker</artifactId>-->
  80. <!-- </dependency>-->
  81. <!-- websocket -->
  82. <dependency>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-starter-websocket</artifactId>
  85. </dependency>
  86. <!-- WEB -->
  87. <dependency>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-starter-web</artifactId>
  90. </dependency>
  91. <!-- spring boot -->
  92. <dependency>
  93. <groupId>org.springframework.boot</groupId>
  94. <artifactId>spring-boot-starter</artifactId>
  95. </dependency>
  96. <!-- 单元测试 -->
  97. <dependency>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-starter-test</artifactId>
  100. <scope>test</scope>
  101. </dependency>
  102. </dependencies>
  103. <build>
  104. <plugins>
  105. <plugin>
  106. <groupId>org.springframework.boot</groupId>
  107. <artifactId>spring-boot-maven-plugin</artifactId>
  108. <configuration>
  109. <executable>true</executable>
  110. </configuration>
  111. <executions>
  112. <execution>
  113. <goals>
  114. <goal>repackage</goal>
  115. </goals>
  116. <configuration>
  117. <classifier>exec</classifier>
  118. </configuration>
  119. </execution>
  120. </executions>
  121. </plugin>
  122. </plugins>
  123. </build>
  124. </project>