pom.xml 2.1 KB

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