pom.xml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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.apache.poi</groupId>
  63. <artifactId>poi-ooxml</artifactId>
  64. <version>5.2.3</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework.cloud</groupId>
  68. <artifactId>spring-cloud-starter-openfeign</artifactId>
  69. </dependency>
  70. </dependencies>
  71. <properties>
  72. <log4j2.version>2.15.0</log4j2.version>
  73. </properties>
  74. <repositories>
  75. <repository>
  76. <id>getui-nexus</id>
  77. <url>http://mvn.gt.igexin.com/nexus/content/repositories/releases/</url>
  78. </repository>
  79. </repositories>
  80. <build>
  81. <plugins>
  82. <plugin>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-maven-plugin</artifactId>
  85. <configuration>
  86. <includeSystemScope>true</includeSystemScope>
  87. </configuration>
  88. </plugin>
  89. </plugins>
  90. </build>
  91. </project>