pom.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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-admin-api</artifactId>
  12. <version>0.0.1-RELEASE</version>
  13. <name>unimall-admin-api</name>
  14. <description>后台管理Api</description>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. </properties>
  18. <repositories>
  19. <repository>
  20. <id>maven-ali</id>
  21. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  22. <releases>
  23. <enabled>true</enabled>
  24. </releases>
  25. <snapshots>
  26. <enabled>true</enabled>
  27. <updatePolicy>always</updatePolicy>
  28. <checksumPolicy>fail</checksumPolicy>
  29. </snapshots>
  30. </repository>
  31. <repository>
  32. <id>iotechn-release</id>
  33. <name>unimall maven</name>
  34. <url>http://maven.iotechn.com/repository/maven-releases/</url>
  35. </repository>
  36. </repositories>
  37. <dependencies>
  38. <dependency>
  39. <groupId>com.iotechn</groupId>
  40. <artifactId>unimall-core</artifactId>
  41. <version>0.0.1-RELEASE</version>
  42. </dependency>
  43. <!-- 插件核心依赖 勿删 -->
  44. <dependency>
  45. <groupId>com.iotechn</groupId>
  46. <artifactId>unimall-plugin-core</artifactId>
  47. <version>0.0.1-RELEASE</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.iotechn</groupId>
  51. <artifactId>unimall-data</artifactId>
  52. <version>0.0.1-RELEASE</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.iotechn</groupId>
  56. <artifactId>unimall-biz</artifactId>
  57. <version>0.0.1-RELEASE</version>
  58. </dependency>
  59. <!-- 微信第三方封装Api -->
  60. <dependency>
  61. <groupId>com.github.binarywang</groupId>
  62. <artifactId>weixin-java-pay</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.projectlombok</groupId>
  70. <artifactId>lombok</artifactId>
  71. <optional>true</optional>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-starter-test</artifactId>
  76. <scope>test</scope>
  77. </dependency>
  78. </dependencies>
  79. </project>