pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <artifactId>vbdsm-hj212</artifactId>
  8. <groupId>cn.vbdsm</groupId>
  9. <version>2.1.0</version>
  10. </parent>
  11. <artifactId>vbdsm-hj212-datacollect</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-web</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.mybatis.spring.boot</groupId>
  19. <artifactId>mybatis-spring-boot-starter</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.alibaba</groupId>
  23. <artifactId>druid</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>mysql</groupId>
  27. <artifactId>mysql-connector-java</artifactId>
  28. <version>5.1.46</version>
  29. </dependency>
  30. <!-- xxl-job-core -->
  31. <dependency>
  32. <groupId>com.xuxueli</groupId>
  33. <artifactId>xxl-job-core</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>cn.vbdsm</groupId>
  37. <artifactId>vbdsm-hj212-modle</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>cn.vbdsm</groupId>
  41. <artifactId>vbdsm-hj212-plugs</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.commons</groupId>
  45. <artifactId>commons-pool2</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>io.shardingsphere</groupId>
  49. <artifactId>sharding-jdbc</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>io.shardingsphere</groupId>
  53. <artifactId>sharding-jdbc-spring-boot-starter</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-test</artifactId>
  58. <scope>test</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.projectlombok</groupId>
  62. <artifactId>lombok</artifactId>
  63. </dependency>
  64. </dependencies>
  65. <profiles>
  66. <profile>
  67. <id>local</id>
  68. <activation>
  69. <activeByDefault>false</activeByDefault>
  70. </activation>
  71. <properties>
  72. <profiles.active>dev</profiles.active>
  73. </properties>
  74. </profile>
  75. <profile>
  76. <id>test</id>
  77. <activation>
  78. <activeByDefault>true</activeByDefault>
  79. </activation>
  80. <properties>
  81. <profiles.active>test</profiles.active>
  82. </properties>
  83. </profile>
  84. <profile>
  85. <id>product</id>
  86. <activation>
  87. <activeByDefault>false</activeByDefault>
  88. </activation>
  89. <properties>
  90. <profiles.active>prod</profiles.active>
  91. </properties>
  92. </profile>
  93. </profiles>
  94. </project>