物管理后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
1.9 KiB

  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.thing</groupId>
  8. <artifactId>common</artifactId>
  9. <version>5.1</version>
  10. <relativePath>../pom.xml</relativePath>
  11. </parent>
  12. <artifactId>script</artifactId>
  13. <name>ThingBI Server Common script</name>
  14. <packaging>jar</packaging>
  15. <groupId>com.thing.common</groupId>
  16. <properties>
  17. <main.dir>${basedir}/../..</main.dir>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>com.thing.common</groupId>
  22. <artifactId>cache</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.thing.common</groupId>
  26. <artifactId>util</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.thing.common</groupId>
  30. <artifactId>core</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.javadelight</groupId>
  34. <artifactId>delight-nashorn-sandbox</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.googlecode.aviator</groupId>
  38. <artifactId>aviator</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.thingsboard</groupId>
  42. <artifactId>tbel</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>cn.hutool</groupId>
  46. <artifactId>hutool-all</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.thing.common</groupId>
  50. <artifactId>orm</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.thing.common</groupId>
  54. <artifactId>tskv</artifactId>
  55. </dependency>
  56. </dependencies>
  57. </project>