pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <packaging>jar</packaging>
  6. <parent>
  7. <groupId>com.fdkankan</groupId>
  8. <artifactId>4dkankan-parent</artifactId>
  9. <version>2.0.0</version>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <groupId>com.fdkankan</groupId>
  13. <artifactId>4dkankan-common-utils</artifactId>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.google.protobuf</groupId>
  17. <artifactId>protobuf-java</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.slf4j</groupId>
  21. <artifactId>slf4j-api</artifactId>
  22. <version>1.7.30</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework</groupId>
  26. <artifactId>spring-core</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>cn.hutool</groupId>
  30. <artifactId>hutool-all</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.apache.ant</groupId>
  34. <artifactId>ant</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.bytedeco</groupId>
  38. <artifactId>javacpp</artifactId>
  39. <version>1.4.3</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.alibaba</groupId>
  43. <artifactId>fastjson</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.bytedeco</groupId>
  47. <artifactId>javacv</artifactId>
  48. <version>1.4.3</version>
  49. <scope>compile</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>joinery</groupId>
  53. <artifactId>jave</artifactId>
  54. <version>1.0.2.2</version>
  55. </dependency>
  56. </dependencies>
  57. <build>
  58. <plugins>
  59. <plugin>
  60. <groupId>org.apache.maven.plugins</groupId>
  61. <artifactId>maven-compiler-plugin</artifactId>
  62. </plugin>
  63. </plugins>
  64. </build>
  65. <distributionManagement>
  66. <repository>
  67. <!-- 这里的ID要和setting的id一致 -->
  68. <id>releases</id>
  69. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>
  70. </repository>
  71. <!--这是打成快照版本的配置 -->
  72. <snapshotRepository>
  73. <id>snapshots</id>
  74. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>
  75. </snapshotRepository>
  76. </distributionManagement>
  77. </project>