pom.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.yonge.mec.mbg</groupId>
  5. <artifactId>mall-admin</artifactId>
  6. <version>1.0</version>
  7. <packaging>jar</packaging>
  8. <name>mall-admin</name>
  9. <description>mall-admin project for mall</description>
  10. <parent>
  11. <groupId>com.ym</groupId>
  12. <artifactId>mec-mall</artifactId>
  13. <version>1.0</version>
  14. </parent>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.springframework.cloud</groupId>
  18. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework.cloud</groupId>
  22. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.vdurmont</groupId>
  26. <artifactId>emoji-java</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.ym</groupId>
  30. <artifactId>mall-mbg</artifactId>
  31. <version>1.0</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.google.guava</groupId>
  35. <artifactId>guava</artifactId>
  36. <version>20.0</version>
  37. <scope>compile</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.alibaba</groupId>
  41. <artifactId>easyexcel</artifactId>
  42. <version>3.2.1</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.ym</groupId>
  46. <artifactId>mec-client-api</artifactId>
  47. </dependency>
  48. </dependencies>
  49. <build>
  50. <plugins>
  51. <plugin>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-maven-plugin</artifactId>
  54. </plugin>
  55. </plugins>
  56. </build>
  57. </project>