|
9 | 9 | </parent> |
10 | 10 | <groupId>de.ksbrwsk</groupId> |
11 | 11 | <artifactId>reactive-people-postgresql</artifactId> |
12 | | - <version>1.1.4-SNAPSHOT</version> |
| 12 | + <version>1.1.5-SNAPSHOT</version> |
13 | 13 | <name>reactive-people-postgresql</name> |
14 | 14 | <description>Reactive example Webflux, R2DBC, Testcontainers</description> |
15 | 15 |
|
16 | 16 | <properties> |
17 | 17 | <java.version>21</java.version> |
18 | 18 | <springdoc-openapi-starter-webflux-ui.version>2.6.0</springdoc-openapi-starter-webflux-ui.version> |
| 19 | + |
| 20 | + <!-- NOTE: asciidoctor-maven-plugin version gt 3.0.0 incompatible with spring restdocs! --> |
| 21 | + <asciidoctor-maven-plugin.version>3.0.0</asciidoctor-maven-plugin.version> |
| 22 | + <springdoc-openapi-maven-plugin.version>1.4</springdoc-openapi-maven-plugin.version> |
| 23 | + <spring-restdocs-asciidoctor.version>3.0.2</spring-restdocs-asciidoctor.version> |
| 24 | + <maven-resources-plugin.version>3.3.1</maven-resources-plugin.version> |
19 | 25 | </properties> |
20 | 26 | <scm> |
21 | 27 | <developerConnection>scm:git:https://github.com/ksbrwsk/reactive-people-postgresql.git</developerConnection> |
|
161 | 167 | <plugin> |
162 | 168 | <groupId>org.springdoc</groupId> |
163 | 169 | <artifactId>springdoc-openapi-maven-plugin</artifactId> |
164 | | - <version>1.4</version> |
| 170 | + <version>${springdoc-openapi-maven-plugin.version}</version> |
165 | 171 | <executions> |
166 | 172 | <execution> |
167 | 173 | <phase>integration-test</phase> |
|
174 | 180 | <plugin> |
175 | 181 | <groupId>org.asciidoctor</groupId> |
176 | 182 | <artifactId>asciidoctor-maven-plugin</artifactId> |
177 | | - <version>3.1.1</version> |
| 183 | + <version>${asciidoctor-maven-plugin.version}</version> |
178 | 184 | <executions> |
179 | 185 | <execution> |
180 | 186 | <id>generate-docs</id> |
|
192 | 198 | <dependency> |
193 | 199 | <groupId>org.springframework.restdocs</groupId> |
194 | 200 | <artifactId>spring-restdocs-asciidoctor</artifactId> |
195 | | - <version>3.0.2</version> |
| 201 | + <version>${spring-restdocs-asciidoctor.version}</version> |
196 | 202 | </dependency> |
197 | 203 | </dependencies> |
198 | 204 | </plugin> |
199 | 205 | <plugin> |
200 | 206 | <artifactId>maven-resources-plugin</artifactId> |
201 | | - <version>3.3.1</version> |
| 207 | + <version>${maven-resources-plugin.version}</version> |
202 | 208 | <executions> |
203 | 209 | <execution> |
204 | 210 | <id>copy-resources</id> |
|
0 commit comments