pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.bosshand.virgo</groupId>
  6. <artifactId>manager</artifactId>
  7. <!-- Inherit defaults from Spring Boot -->
  8. <parent>
  9. <groupId>com.bosshand</groupId>
  10. <artifactId>virgo</artifactId>
  11. <version>0.0.1-SNAPSHOT</version>
  12. <relativePath>../pom.xml</relativePath>
  13. </parent>
  14. <!-- Add typical dependencies for a web application -->
  15. <dependencies>
  16. <!--JWT java web token 权限验证-->
  17. <dependency>
  18. <groupId>com.auth0</groupId>
  19. <artifactId>java-jwt</artifactId>
  20. <version>3.4.0</version>
  21. </dependency>
  22. <!-- log4j日志 -->
  23. <dependency>
  24. <groupId>log4j</groupId>
  25. <artifactId>log4j</artifactId>
  26. <version>1.2.17</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>net.sf.json-lib</groupId>
  30. <artifactId>json-lib</artifactId>
  31. <version>2.4</version>
  32. <classifier>jdk15</classifier>
  33. </dependency>
  34. <!-- SpringBoot热部署 -->
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-devtools</artifactId>
  38. <optional>true</optional>
  39. </dependency>
  40. <!-- LEO associate dependency -->
  41. <dependency>
  42. <groupId>com.bosshand.virgo</groupId>
  43. <artifactId>core</artifactId>
  44. <version>0.0.1-SNAPSHOT</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.bosshand.virgo</groupId>
  48. <artifactId>faceSDK</artifactId>
  49. <version>0.0.1-SNAPSHOT</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.ibeetl</groupId>
  53. <artifactId>beetl</artifactId>
  54. <version>3.0.15.RELEASE</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.gexin.platform</groupId>
  58. <artifactId>gexin-rp-sdk-http</artifactId>
  59. <version>4.1.1.4</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.cloud</groupId>
  63. <artifactId>spring-cloud-starter-openfeign</artifactId>
  64. </dependency>
  65. </dependencies>
  66. <properties>
  67. <log4j2.version>2.15.0</log4j2.version>
  68. </properties>
  69. <repositories>
  70. <repository>
  71. <id>getui-nexus</id>
  72. <url>http://mvn.gt.igexin.com/nexus/content/repositories/releases/</url>
  73. </repository>
  74. </repositories>
  75. <build>
  76. <plugins>
  77. <plugin>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-maven-plugin</artifactId>
  80. <configuration>
  81. <includeSystemScope>true</includeSystemScope>
  82. </configuration>
  83. </plugin>
  84. </plugins>
  85. </build>
  86. </project>