pom.xml 2.3 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/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <!--父工程信息-->
  5. <parent>
  6. <groupId>com.shkpr.service</groupId>
  7. <artifactId>kpr-custom-gateway</artifactId>
  8. <version>1.0.0-dev</version>
  9. </parent>
  10. <!--工件名-->
  11. <artifactId>custom-gateway-zydma</artifactId>
  12. <!--版本号-->
  13. <version>${project.version}</version>
  14. <!--打包方式-->
  15. <packaging>jar</packaging>
  16. <!--项目名-->
  17. <name>CustomGatewayZydma</name>
  18. <!--项目描述-->
  19. <description>枣阳漏控</description>
  20. <!--依赖项-->
  21. <dependencies>
  22. <!--核心模块-->
  23. <dependency>
  24. <groupId>com.shkpr.service</groupId>
  25. <artifactId>custom-gateway-core</artifactId>
  26. <version>${project.version}</version>
  27. </dependency>
  28. <!--httpclient-->
  29. <dependency>
  30. <groupId>org.apache.httpcomponents</groupId>
  31. <artifactId>httpclient</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.apache.httpcomponents</groupId>
  35. <artifactId>fluent-hc</artifactId>
  36. </dependency>
  37. </dependencies>
  38. <!--构建脚本-->
  39. <build>
  40. <!--插件项-->
  41. <plugins>
  42. <!--maven-jar-->
  43. <plugin>
  44. <groupId>org.apache.maven.plugins</groupId>
  45. <artifactId>maven-jar-plugin</artifactId>
  46. <executions>
  47. <execution>
  48. <id>default-jar</id>
  49. <phase>none</phase>
  50. </execution>
  51. </executions>
  52. </plugin>
  53. <!--maven-install-->
  54. <plugin>
  55. <groupId>org.apache.maven.plugins</groupId>
  56. <artifactId>maven-install-plugin</artifactId>
  57. <executions>
  58. <execution>
  59. <id>default-install</id>
  60. <phase>none</phase>
  61. </execution>
  62. </executions>
  63. </plugin>
  64. </plugins>
  65. </build>
  66. </project>