pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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>liteflow</artifactId>
  7. <groupId>com.yomahub</groupId>
  8. <version>${revision}</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <packaging>pom</packaging>
  13. <artifactId>liteflow-benchmark</artifactId>
  14. <properties>
  15. <jmh.version>1.37</jmh.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.yomahub</groupId>
  20. <artifactId>liteflow-spring-boot-starter</artifactId>
  21. <version>${revision}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-test</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.openjdk.jmh</groupId>
  29. <artifactId>jmh-core</artifactId>
  30. <version>${jmh.version}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.openjdk.jmh</groupId>
  34. <artifactId>jmh-generator-annprocess</artifactId>
  35. <version>${jmh.version}</version>
  36. </dependency>
  37. </dependencies>
  38. <modules>
  39. <module>liteflow-benchmark-script-javax</module>
  40. <module>liteflow-benchmark-script-java</module>
  41. <module>liteflow-benchmark-script-groovy</module>
  42. <module>liteflow-benchmark-common</module>
  43. </modules>
  44. <build>
  45. <plugins>
  46. <plugin>
  47. <groupId>org.apache.maven.plugins</groupId>
  48. <artifactId>maven-deploy-plugin</artifactId>
  49. <version>2.8.2</version>
  50. <configuration>
  51. <skip>true</skip>
  52. </configuration>
  53. </plugin>
  54. </plugins>
  55. </build>
  56. </project>