pom.xml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. <parent>
  6. <artifactId>kmall-pt</artifactId>
  7. <groupId>com.kmall</groupId>
  8. <version>3.1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>kmall-api</artifactId>
  12. <packaging>jar</packaging>
  13. <description>API接口模块</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.kmall</groupId>
  17. <artifactId>kmall-common</artifactId>
  18. <version>${kmall-version}</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.kmall</groupId>
  22. <artifactId>kmall-manager</artifactId>
  23. <version>${kmall-version}</version>
  24. </dependency>
  25. <!--swagger 依赖-->
  26. <dependency>
  27. <groupId>io.springfox</groupId>
  28. <artifactId>springfox-swagger2</artifactId>
  29. <version>2.4.0</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>io.springfox</groupId>
  33. <artifactId>springfox-swagger-ui</artifactId>
  34. <version>2.4.0</version>
  35. </dependency>
  36. </dependencies>
  37. <build>
  38. <plugins>
  39. <plugin>
  40. <groupId>org.apache.maven.plugins</groupId>
  41. <artifactId>maven-surefire-plugin</artifactId>
  42. <version>2.18.1</version>
  43. <configuration>
  44. <skipTests>true</skipTests>
  45. <argLine>-Dfile.encoding=UTF-8</argLine>
  46. </configuration>
  47. </plugin>
  48. </plugins>
  49. </build>
  50. </project>