pom.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?xml version='1.0' encoding='utf-8'?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <packaging>jar</packaging>
  6. <parent>
  7. <groupId>cn.hutool</groupId>
  8. <artifactId>hutool-parent</artifactId>
  9. <version>5.5.2-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>hutool-script</artifactId>
  12. <name>${project.artifactId}</name>
  13. <description>Hutool 脚本执行封装</description>
  14. <properties>
  15. <jython.version>2.7.2</jython.version>
  16. <luaj.version>3.0.1</luaj.version>
  17. <groovy.version>3.0.6</groovy.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>cn.hutool</groupId>
  22. <artifactId>hutool-core</artifactId>
  23. <version>${project.parent.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.python</groupId>
  27. <artifactId>jython</artifactId>
  28. <version>${jython.version}</version>
  29. <scope>provided</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.luaj</groupId>
  33. <artifactId>luaj-jse</artifactId>
  34. <version>${luaj.version}</version>
  35. <scope>provided</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.codehaus.groovy</groupId>
  39. <artifactId>groovy-all</artifactId>
  40. <version>${groovy.version}</version>
  41. <type>pom</type>
  42. <scope>provided</scope>
  43. <exclusions>
  44. <exclusion>
  45. <artifactId>junit</artifactId>
  46. <groupId>junit</groupId>
  47. </exclusion>
  48. </exclusions>
  49. </dependency>
  50. </dependencies>
  51. </project>