pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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.1-SNAPSHOT</version>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>2.1.0.RELEASE</version>
  14. </parent>
  15. <properties>
  16. <maven.compiler.source>10</maven.compiler.source>
  17. <maven.compiler.target>10</maven.compiler.target>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <postgresql.version>42.2.5</postgresql.version>
  20. <pgclient.version>0.10.6</pgclient.version>
  21. <rxjava2-jdbc.version>0.2.0</rxjava2-jdbc.version>
  22. <r2dbc-postgresql.version>1.0.0.BUILD-SNAPSHOT</r2dbc-postgresql.version>
  23. </properties>
  24. <dependencies>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-webflux</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-jdbc</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-mustache</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-data-mongodb-reactive</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.postgresql</groupId>
  43. <artifactId>postgresql</artifactId>
  44. <version>${postgresql.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>io.reactiverse</groupId>
  48. <artifactId>reactive-pg-client</artifactId>
  49. <version>${pgclient.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.github.davidmoten</groupId>
  53. <artifactId>rxjava2-jdbc</artifactId>
  54. <version>${rxjava2-jdbc.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>io.r2dbc</groupId>
  58. <artifactId>r2dbc-postgresql</artifactId>
  59. <version>${r2dbc-postgresql.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.data</groupId>
  63. <artifactId>spring-data-r2dbc</artifactId>
  64. <version>1.0.0.BUILD-SNAPSHOT</version>
  65. </dependency>
  66. </dependencies>
  67. <repositories>
  68. <repository>
  69. <id>spring-libs-snapshot</id>
  70. <name>Spring Snapshots</name>
  71. <url>https://repo.spring.io/libs-snapshot</url>
  72. </repository>
  73. </repositories>
  74. <pluginRepositories>
  75. <pluginRepository>
  76. <id>spring-libs-snapshot</id>
  77. <name>Spring Snapshots</name>
  78. <url>https://repo.spring.io/libs-snapshot</url>
  79. </pluginRepository>
  80. </pluginRepositories>
  81. <build>
  82. <finalName>${project.artifactId}</finalName>
  83. <plugins>
  84. <plugin>
  85. <groupId>org.springframework.boot</groupId>
  86. <artifactId>spring-boot-maven-plugin</artifactId>
  87. </plugin>
  88. </plugins>
  89. </build>
  90. </project>