pom.xml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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
  5. http://maven.apache.org/xsd/maven-4.0.0.xsd">
  6. <modelVersion>4.0.0</modelVersion>
  7. <groupId>benchmark</groupId>
  8. <artifactId>spring-webflux-benchmark</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>3.3.5</version>
  14. </parent>
  15. <properties>
  16. <java.version>21</java.version>
  17. <jstachio.version>1.3.6</jstachio.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-webflux</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-data-r2dbc</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.postgresql</groupId>
  30. <artifactId>r2dbc-postgresql</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>io.jstach</groupId>
  34. <artifactId>jstachio</artifactId>
  35. <version>${jstachio.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>io.jstach</groupId>
  39. <artifactId>jstachio-apt</artifactId>
  40. <version>${jstachio.version}</version>
  41. <scope>provided</scope>
  42. <optional>true</optional>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-data-mongodb-reactive</artifactId>
  47. </dependency>
  48. </dependencies>
  49. <build>
  50. <finalName>${project.artifactId}</finalName>
  51. <plugins>
  52. <plugin>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-maven-plugin</artifactId>
  55. </plugin>
  56. <plugin>
  57. <groupId>org.apache.maven.plugins</groupId>
  58. <artifactId>maven-compiler-plugin</artifactId>
  59. <configuration>
  60. <annotationProcessorPaths>
  61. <path>
  62. <groupId>io.jstach</groupId>
  63. <artifactId>jstachio-apt</artifactId>
  64. <version>${jstachio.version}</version>
  65. </path>
  66. </annotationProcessorPaths>
  67. </configuration>
  68. </plugin>
  69. </plugins>
  70. </build>
  71. </project>