pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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. <parent>
  6. <artifactId>sz_hn</artifactId>
  7. <groupId>com.leisp</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>mybusiness</artifactId>
  12. <description>
  13. 业务模块
  14. </description>
  15. <build>
  16. <plugins>
  17. <plugin>
  18. <groupId>org.apache.maven.plugins</groupId>
  19. <artifactId>maven-compiler-plugin</artifactId>
  20. <configuration>
  21. <source>8</source>
  22. <target>8</target>
  23. </configuration>
  24. </plugin>
  25. </plugins>
  26. </build>
  27. <dependencies>
  28. <!-- 通用工具-->
  29. <dependency>
  30. <groupId>com.leisp</groupId>
  31. <artifactId>leisp-common</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.leisp</groupId>
  35. <artifactId>leisp-system</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.leisp</groupId>
  39. <artifactId>leisp-framework</artifactId>
  40. </dependency>
  41. <!-- https://mvnrepository.com/artifact/com.belerweb/pinyin4j -->
  42. <dependency>
  43. <groupId>com.belerweb</groupId>
  44. <artifactId>pinyin4j</artifactId>
  45. <version>2.5.1</version>
  46. </dependency>
  47. <!--海康-->
  48. <dependency>
  49. <groupId>com.hikvision.ga</groupId>
  50. <artifactId>artemis-http-client</artifactId>
  51. <version>1.1.3</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>AXmlResourceParser</groupId>
  55. <artifactId>AXmlResourceParser_</artifactId>
  56. <version>2.3</version>
  57. <scope>system</scope>
  58. <systemPath>${project.basedir}/src/main/resources/ext_jar/AXmlResourceParser.jar</systemPath>
  59. </dependency>
  60. <dependency>
  61. <groupId>dd-plist-1.16</groupId>
  62. <artifactId>dd-plist-1.16_</artifactId>
  63. <version>2.3</version>
  64. <scope>system</scope>
  65. <systemPath>${project.basedir}/src/main/resources/ext_jar/dd-plist-1.16.jar</systemPath>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.bytedeco</groupId>
  69. <artifactId>javacv-platform</artifactId>
  70. <version>1.5.1</version>
  71. <type>pom</type>
  72. </dependency>
  73. <dependency>
  74. <groupId>commons-net</groupId>
  75. <artifactId>commons-net</artifactId>
  76. <version>3.1</version>
  77. </dependency>
  78. <!-- https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-stdlib -->
  79. <!--打包发布时需要打开,本机运行时需要注释掉(孙一石)-->
  80. <!--<dependency>
  81. <groupId>org.jetbrains.kotlin</groupId>
  82. <artifactId>kotlin-stdlib</artifactId>
  83. <version>1.4.21</version>
  84. </dependency>-->
  85. <!--ActiveMq-->
  86. <dependency>
  87. <groupId>org.springframework.boot</groupId>
  88. <artifactId>spring-boot-starter-activemq</artifactId>
  89. <version>1.5.0.RELEASE</version>
  90. </dependency>
  91. <!--消息队列连接池-->
  92. <dependency>
  93. <groupId>org.apache.activemq</groupId>
  94. <artifactId>activemq-pool</artifactId>
  95. <version>5.15.0</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>it.sauronsoftware.ftp4j</groupId>
  99. <artifactId>ftp4j</artifactId>
  100. <version>1.6</version>
  101. <scope>system</scope>
  102. <systemPath>${project.basedir}/src/main/resources/ext_jar/ftp4j-1.6.jar</systemPath>
  103. </dependency>
  104. </dependencies>
  105. </project>