pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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>tofly-scyz</artifactId>
  7. <groupId>com.tofly</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>scyz-scada</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.baomidou</groupId>
  19. <artifactId>mybatis-plus-boot-starter</artifactId>
  20. <version>3.3.2</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.tofly</groupId>
  24. <artifactId>scyz-service-api</artifactId>
  25. <version>1.0.0</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.tofly</groupId>
  29. <artifactId>common-redis</artifactId>
  30. <version>1.0.3</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.cloud</groupId>
  34. <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
  35. </dependency>
  36. <!-- xxl-job -->
  37. <dependency>
  38. <groupId>com.xuxueli</groupId>
  39. <artifactId>xxl-job-core</artifactId>
  40. <version>2.3.0</version>
  41. </dependency>
  42. <!--文档导出-->
  43. <dependency>
  44. <groupId>com.haiqiu.tools</groupId>
  45. <artifactId>hq-all-tools</artifactId>
  46. <version>1.1.1</version>
  47. <scope>system</scope>
  48. <systemPath>${project.basedir}/src/main/resources/lib/hq-all-tools-1.1.1.jar</systemPath>
  49. </dependency>
  50. <!-- https://mvnrepository.com/artifact/fr.opensagres.xdocreport/fr.opensagres.xdocreport.converter.docx.xwpf -->
  51. <dependency>
  52. <groupId>fr.opensagres.xdocreport</groupId>
  53. <artifactId>fr.opensagres.xdocreport.converter.docx.xwpf</artifactId>
  54. <version>2.0.2</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.deepoove</groupId>
  58. <artifactId>poi-tl</artifactId>
  59. <version>1.10.0</version>
  60. </dependency>
  61. <!--消息队列-->
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-starter-amqp</artifactId>
  65. </dependency>
  66. <!--邮件-->
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-starter-mail</artifactId>
  70. </dependency>
  71. <!-- Mqtt -->
  72. <dependency>
  73. <groupId>org.springframework.integration</groupId>
  74. <artifactId>spring-integration-mqtt</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.eclipse.paho</groupId>
  78. <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
  79. <version>1.2.4</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.fasterxml.jackson.core</groupId>
  83. <artifactId>jackson-databind</artifactId>
  84. <version>2.10.0</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.fasterxml.jackson.core</groupId>
  88. <artifactId>jackson-core</artifactId>
  89. <version>2.10.0</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.fasterxml.jackson.core</groupId>
  93. <artifactId>jackson-annotations</artifactId>
  94. <version>2.10.0</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.jooq</groupId>
  98. <artifactId>joou-java-6</artifactId>
  99. <version>0.9.4</version>
  100. </dependency>
  101. </dependencies>
  102. <build>
  103. <plugins>
  104. <plugin>
  105. <groupId>org.springframework.boot</groupId>
  106. <artifactId>spring-boot-maven-plugin</artifactId>
  107. <executions>
  108. <execution>
  109. <goals>
  110. <goal>repackage</goal>
  111. </goals>
  112. </execution>
  113. </executions>
  114. <configuration>
  115. <includeSystemScope>true</includeSystemScope>
  116. </configuration>
  117. </plugin>
  118. </plugins>
  119. </build>
  120. </project>