pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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. <parent>
  6. <groupId>com.jiayue.ipfcst</groupId>
  7. <artifactId>ipfcst-common</artifactId>
  8. <version>3.0.0</version>
  9. </parent>
  10. <artifactId>ipfcst-common-data</artifactId>
  11. <version>3.0.0</version>
  12. <packaging>jar</packaging>
  13. <description>ipfcst 数据相关</description>
  14. <properties>
  15. <java.version>1.8</java.version>
  16. </properties>
  17. <repositories>
  18. <repository>
  19. <id>jiayue-releases</id>
  20. <name>嘉越云仓库</name>
  21. <url>http://49.4.68.219:8888/nexus/content/groups/public/</url>
  22. </repository>
  23. </repositories>
  24. <dependencies>
  25. <dependency>
  26. <groupId>com.jiayue.ipfcst</groupId>
  27. <artifactId>ipfcst-common-core</artifactId>
  28. <version>3.0.0</version>
  29. </dependency>
  30. <!--mysql 驱动-->
  31. <dependency>
  32. <groupId>mysql</groupId>
  33. <artifactId>mysql-connector-java</artifactId>
  34. </dependency>
  35. <!-- druid 连接池 -->
  36. <dependency>
  37. <groupId>com.alibaba</groupId>
  38. <artifactId>druid-spring-boot-starter</artifactId>
  39. <version>1.1.20</version>
  40. </dependency>
  41. <!--JPA-->
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-data-jpa</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.hibernate</groupId>
  48. <artifactId>hibernate-entitymanager</artifactId>
  49. <version>5.2.3.Final</version>
  50. </dependency>
  51. <!--任务调度-->
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-quartz</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.quartz-scheduler</groupId>
  58. <artifactId>quartz-jobs</artifactId>
  59. <version>${quartz.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.security</groupId>
  63. <artifactId>spring-security-core</artifactId>
  64. <version>5.0.4.RELEASE</version>
  65. <scope>compile</scope>
  66. </dependency>
  67. <!-- 缓存依赖-->
  68. <dependency>
  69. <groupId>net.sf.ehcache</groupId>
  70. <artifactId>ehcache</artifactId>
  71. <version>2.10.5</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>net.sf.json-lib</groupId>
  75. <artifactId>json-lib</artifactId>
  76. <version>2.4</version>
  77. <classifier>jdk15</classifier>
  78. </dependency>
  79. <!-- h2数据库-->
  80. <dependency>
  81. <groupId>com.h2database</groupId>
  82. <artifactId>h2</artifactId>
  83. <scope>runtime</scope>
  84. </dependency>
  85. <!-- 金昌数据库-->
  86. <dependency>
  87. <groupId>kingbasejdbc4</groupId>
  88. <artifactId>kingbasejdbc4</artifactId>
  89. <version>1</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>openjpadictionary</groupId>
  93. <artifactId>openjpadictionary</artifactId>
  94. <version>1</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.hibernate.core</groupId>
  98. <artifactId>hibernate</artifactId>
  99. <version>5.4.6.Finaldialect</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>wei.yigulu</groupId>
  103. <artifactId>protocol-all</artifactId>
  104. <version>1.2.31</version>
  105. <exclusions>
  106. <exclusion>
  107. <groupId>io.netty</groupId>
  108. <artifactId>netty-all</artifactId>
  109. </exclusion>
  110. </exclusions>
  111. </dependency>
  112. </dependencies>
  113. </project>