pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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-components</artifactId>
  7. <groupId>cc.iotkit</groupId>
  8. <version>0.5.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>iot-component-converter</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>cc.iotkit</groupId>
  15. <artifactId>iot-common-model</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>cc.iotkit</groupId>
  19. <artifactId>iot-script-engine</artifactId>
  20. </dependency>
  21. <!--====================第三方库===================-->
  22. <dependency>
  23. <groupId>org.slf4j</groupId>
  24. <artifactId>slf4j-api</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>commons-beanutils</groupId>
  28. <artifactId>commons-beanutils</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.projectlombok</groupId>
  32. <artifactId>lombok</artifactId>
  33. </dependency>
  34. <!--javascript运行环境-->
  35. <dependency>
  36. <groupId>org.graalvm.sdk</groupId>
  37. <artifactId>graal-sdk</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.graalvm.js</groupId>
  41. <artifactId>js</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.graalvm.js</groupId>
  45. <artifactId>js-scriptengine</artifactId>
  46. </dependency>
  47. </dependencies>
  48. <build>
  49. <plugins>
  50. <plugin>
  51. <groupId>org.apache.maven.plugins</groupId>
  52. <artifactId>maven-compiler-plugin</artifactId>
  53. <configuration>
  54. <source>${java.version}</source>
  55. <target>${java.version}</target>
  56. </configuration>
  57. </plugin>
  58. </plugins>
  59. </build>
  60. </project>