pom.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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-core</artifactId>
  12. <!--版本号-->
  13. <version>${project.version}</version>
  14. <!--打包方式-->
  15. <packaging>pom</packaging>
  16. <!--项目名-->
  17. <name>CustomGatewayCore</name>
  18. <!--项目描述-->
  19. <description>核心模块</description>
  20. <!--依赖项-->
  21. <dependencies>
  22. <!--base-->
  23. <dependency>
  24. <groupId>com.global</groupId>
  25. <artifactId>gbase</artifactId>
  26. <version>${gbase.version}</version>
  27. <scope>system</scope>
  28. <systemPath>${project.basedir}/libs/gbase.${gbase.version}.jar</systemPath>
  29. </dependency>
  30. <!--spring-security-->
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-security</artifactId>
  34. </dependency>
  35. <!--jjwt-->
  36. <dependency>
  37. <groupId>io.jsonwebtoken</groupId>
  38. <artifactId>jjwt</artifactId>
  39. <version>${jjwt.version}</version>
  40. </dependency>
  41. </dependencies>
  42. </project>