pom.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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.2.0.M2</version>
  14. </parent>
  15. <properties>
  16. <maven.compiler.source>11</maven.compiler.source>
  17. <maven.compiler.target>11</maven.compiler.target>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <spring-data-r2dbc.version>1.0.0.M2</spring-data-r2dbc.version>
  20. <postgresql.version>42.2.5</postgresql.version>
  21. <pgclient.version>0.11.4</pgclient.version>
  22. <rxjava2-jdbc.version>0.2.4</rxjava2-jdbc.version>
  23. <r2dbc-postgresql.version>1.0.0.M7</r2dbc-postgresql.version>
  24. </properties>
  25. <dependencies>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-webflux</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-jdbc</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-mustache</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-data-mongodb-reactive</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.postgresql</groupId>
  44. <artifactId>postgresql</artifactId>
  45. <version>${postgresql.version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>io.reactiverse</groupId>
  49. <artifactId>reactive-pg-client</artifactId>
  50. <version>${pgclient.version}</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.github.davidmoten</groupId>
  54. <artifactId>rxjava2-jdbc</artifactId>
  55. <version>${rxjava2-jdbc.version}</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>io.r2dbc</groupId>
  59. <artifactId>r2dbc-postgresql</artifactId>
  60. <version>${r2dbc-postgresql.version}</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.data</groupId>
  64. <artifactId>spring-data-r2dbc</artifactId>
  65. <version>${spring-data-r2dbc.version}</version>
  66. <!-- Exclude Spring framework 2.2.0.M1 and use 2.2.0.M2 -->
  67. <exclusions>
  68. <exclusion>
  69. <groupId>org.springframework</groupId>
  70. <artifactId>spring-tx</artifactId>
  71. </exclusion>
  72. <exclusion>
  73. <groupId>org.springframework</groupId>
  74. <artifactId>spring-context</artifactId>
  75. </exclusion>
  76. <exclusion>
  77. <groupId>org.springframework</groupId>
  78. <artifactId>spring-core</artifactId>
  79. </exclusion>
  80. <exclusion>
  81. <groupId>org.springframework</groupId>
  82. <artifactId>spring-beans</artifactId>
  83. </exclusion>
  84. </exclusions>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.springframework</groupId>
  88. <artifactId>spring-tx</artifactId>
  89. <version>5.2.0.M2</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework</groupId>
  93. <artifactId>spring-context</artifactId>
  94. <version>5.2.0.M2</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.springframework</groupId>
  98. <artifactId>spring-core</artifactId>
  99. <version>5.2.0.M2</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.springframework</groupId>
  103. <artifactId>spring-beans</artifactId>
  104. <version>5.2.0.M2</version>
  105. </dependency>
  106. <!-- End of 2.2.0.M1 and 2.2.0.M2 dependency preparations -->
  107. </dependencies>
  108. <repositories>
  109. <repository>
  110. <id>spring-libs-snapshot</id>
  111. <name>Spring Snapshots</name>
  112. <url>https://repo.spring.io/libs-snapshot</url>
  113. </repository>
  114. </repositories>
  115. <pluginRepositories>
  116. <pluginRepository>
  117. <id>spring-libs-snapshot</id>
  118. <name>Spring Snapshots</name>
  119. <url>https://repo.spring.io/libs-snapshot</url>
  120. </pluginRepository>
  121. </pluginRepositories>
  122. <build>
  123. <finalName>${project.artifactId}</finalName>
  124. <plugins>
  125. <plugin>
  126. <groupId>org.springframework.boot</groupId>
  127. <artifactId>spring-boot-maven-plugin</artifactId>
  128. </plugin>
  129. <plugin>
  130. <groupId>org.apache.maven.plugins</groupId>
  131. <artifactId>maven-compiler-plugin</artifactId>
  132. <version>3.8.0</version>
  133. <configuration>
  134. <debug>false</debug>
  135. </configuration>
  136. </plugin>
  137. </plugins>
  138. </build>
  139. </project>