pom.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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.yomahub</groupId>
  8. <artifactId>liteflow-script-plugin</artifactId>
  9. <version>${revision}</version>
  10. <relativePath>../pom.xml</relativePath>
  11. </parent>
  12. <!-- This module is deprecated and should not be used. -->
  13. <!-- It is replaced by liteflow-script-javax module and not update anymore. -->
  14. <artifactId>liteflow-script-java</artifactId>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.yomahub</groupId>
  18. <artifactId>liteflow-core</artifactId>
  19. <version>${revision}</version>
  20. <optional>true</optional>
  21. <scope>provided</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.codehaus.janino</groupId>
  25. <artifactId>janino</artifactId>
  26. </dependency>
  27. </dependencies>
  28. <build>
  29. <plugins>
  30. <plugin>
  31. <groupId>org.apache.maven.plugins</groupId>
  32. <artifactId>maven-deploy-plugin</artifactId>
  33. <version>2.8.2</version>
  34. <configuration>
  35. <skip>true</skip>
  36. </configuration>
  37. </plugin>
  38. </plugins>
  39. </build>
  40. </project>