pom.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. <parent>
  5. <groupId>cn.com.taiji</groupId>
  6. <artifactId>data-service</artifactId>
  7. <version>1.0</version>
  8. </parent>
  9. <artifactId>zwww-service</artifactId>
  10. <name>zwww-service</name>
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.springframework.boot</groupId>
  14. <artifactId>spring-boot-starter-web</artifactId>
  15. </dependency>
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-devtools</artifactId>
  19. <scope>runtime</scope>
  20. <optional>true</optional>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.projectlombok</groupId>
  24. <artifactId>lombok</artifactId>
  25. <optional>true</optional>
  26. <version>1.18.20</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.alibaba</groupId>
  30. <artifactId>fastjson</artifactId>
  31. <version>1.2.75</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>cn.hutool</groupId>
  35. <artifactId>hutool-all</artifactId>
  36. <version>5.6.6</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>cn.com.taiji</groupId>
  40. <artifactId>apione-http-client</artifactId>
  41. <version>1.0.0-SNAPSHOT</version>
  42. <scope>system</scope>
  43. <systemPath>${basedir}/src/main/resources/lib/apione-http-client-1.0.0-SNAPSHOT.jar</systemPath>
  44. </dependency>
  45. </dependencies>
  46. <build>
  47. <resources>
  48. <resource>
  49. <directory>src/main/resources</directory>
  50. <filtering>true</filtering>
  51. </resource>
  52. </resources>
  53. </build>
  54. </project>