pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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>iot-module</artifactId>
  7. <groupId>cc.iotkit</groupId>
  8. <version>0.5.3</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>iot-screen</artifactId>
  12. <description>
  13. 数据大屏模块
  14. </description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>cc.iotkit</groupId>
  18. <artifactId>iot-common-core</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>cc.iotkit</groupId>
  22. <artifactId>iot-script-engine</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>cc.iotkit</groupId>
  26. <artifactId>iot-data-service</artifactId>
  27. </dependency>
  28. <!--====================第三方库===================-->
  29. <dependency>
  30. <groupId>org.springframework</groupId>
  31. <artifactId>spring-context-support</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.projectlombok</groupId>
  35. <artifactId>lombok</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>io.vertx</groupId>
  39. <artifactId>vertx-core</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>io.vertx</groupId>
  43. <artifactId>vertx-web-proxy</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework</groupId>
  47. <artifactId>spring-context</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-web</artifactId>
  52. </dependency>
  53. </dependencies>
  54. <build>
  55. <plugins>
  56. <plugin>
  57. <groupId>org.apache.maven.plugins</groupId>
  58. <artifactId>maven-compiler-plugin</artifactId>
  59. <version>3.8.1</version>
  60. <configuration>
  61. <source>${java.version}</source>
  62. <target>${java.version}</target>
  63. <encoding>utf8</encoding>
  64. </configuration>
  65. </plugin>
  66. </plugins>
  67. </build>
  68. </project>