-
Notifications
You must be signed in to change notification settings - Fork 5
/
spring-boot-application.yaml
674 lines (674 loc) · 25.8 KB
/
spring-boot-application.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
initializr:
dependencies:
- name: Core
content:
- name: Security
id: security
description: Secure your application via spring-security
weight: 100
- name: AOP
id: aop
description: Aspect-oriented programming including spring-aop and AspectJ
- name: Atomikos (JTA)
id: jta-atomikos
description: JTA distributed transactions via Atomikos
versionRange: 1.2.0.M1
- name: Bitronix (JTA)
id: jta-bitronix
description: JTA distributed transactions via Bitronix
versionRange: 1.2.0.M1
- name: Narayana (JTA)
id: jta-narayana
description: JTA distributed transactions via Narayana
versionRange: 1.4.0.M2
- name: Cache
id: cache
description: Spring's Cache abstraction
versionRange: 1.3.0.M1
- name: DevTools
id: devtools
groupId: org.springframework.boot
artifactId: spring-boot-devtools
scope: runtime
description: Spring Boot Development Tools
versionRange: 1.3.0.M1
starter: false
- name: Configuration Processor
id: configuration-processor
groupId: org.springframework.boot
artifactId: spring-boot-configuration-processor
scope: compileOnly
description: Generate metadata for your custom configuration keys
versionRange: 1.2.0.RELEASE
starter: false
- name: Validation
id: validation
description: JSR-303 validation infrastructure (already included with web)
versionRange: 1.3.0.M1
- name: Session
id: session
groupId: org.springframework.session
artifactId: spring-session
description: API and implementations for managing a user’s session information
versionRange: 1.3.0.M2
starter: false
- name: Retry
id: retry
groupId: org.springframework.retry
artifactId: spring-retry
description: Provide declarative retry support via spring-retry
versionRange: 1.3.0.M2
starter: false
- name: Lombok
id: lombok
groupId: org.projectlombok
artifactId: lombok
scope: compileOnly
description: Java annotation library which helps to reduce boilerplate code and code faster
mappings:
- versionRange: "[1.2.0.RELEASE,1.4.0.M1)"
version: 1.16.6
starter: false
- name: Web
content:
- name: Web
id: web
description: Full-stack web development with Tomcat and Spring MVC
weight: 100
facets:
- web
- name: Websocket
id: websocket
description: Websocket development with SockJS and STOMP
- name: Web Services
id: web-services
description: Contract-first SOAP service development with Spring Web Services
aliases:
- ws
mappings:
- versionRange: 1.4.0.M3
artifactId: spring-boot-starter-web-services
- versionRange: "[1.1.0.RELEASE,1.4.0.M3)"
artifactId: spring-boot-starter-ws
- name: Jersey (JAX-RS)
id: jersey
description: RESTful Web Services framework
versionRange: 1.2.0.RELEASE
- name: Ratpack
id: ratpack
description: Spring Boot integration for the Ratpack framework
groupId: io.ratpack
artifactId: ratpack-spring-boot
version: 1.1.1
versionRange: 1.2.0.RELEASE
starter: false
- name: Vaadin
id: vaadin
facets:
- web
groupId: com.vaadin
artifactId: vaadin-spring-boot-starter
description: Vaadin java web application framework
bom: vaadin-bom
mappings:
- versionRange: "[1.2.0.RELEASE,1.4.0.RELEASE)"
version: 1.0.2
- versionRange: 1.4.0.RELEASE
version: 1.1.1
- name: Rest Repositories
id: data-rest
weight: 10
description: Exposing Spring Data repositories over REST via spring-data-rest-webmvc
- name: HATEOAS
id: hateoas
description: HATEOAS-based RESTful services
versionRange: 1.2.2.RELEASE
- name: Rest Repositories HAL Browser
id: data-rest-hal
description: Browsing Spring Data REST repositories in your browser
groupId: org.springframework.data
artifactId: spring-data-rest-hal-browser
versionRange: 1.3.0.M1
starter: false
- name: Mobile
id: mobile
description: Simplify the development of mobile web applications with spring-mobile
- name: REST Docs
id: restdocs
description: Document RESTful services by combining hand-written and auto-generated documentation
groupId: org.springframework.restdocs
artifactId: spring-restdocs-mockmvc
mappings:
- versionRange: "[1.2.0.RELEASE,1.3.0.RC1)"
version: 1.0.1.RELEASE
scope: test
- name: Template Engines
content:
- name: Freemarker
id: freemarker
description: FreeMarker templating engine
facets:
- web
keywords:
- template
- name: Velocity
id: velocity
description: Velocity templating engine
versionRange: "[1.1.6.RELEASE,1.4.0.M2)"
facets:
- web
keywords:
- template
- name: Groovy Templates
id: groovy-templates
description: Groovy templating engine
facets:
- web
- name: Thymeleaf
id: thymeleaf
description: Thymeleaf templating engine, including integration with Spring
facets:
- web
keywords:
- template
- name: Mustache
id: mustache
description: Mustache templating engine
versionRange: 1.2.2.RELEASE
facets:
- web
keywords:
- template
- name: SQL
content:
- name: JPA
id: data-jpa
description: Java Persistence API including spring-data-jpa, spring-orm and Hibernate
weight: 100
aliases:
- jpa
- name: JOOQ
id: jooq
description: Persistence support using Java Object Oriented Querying
versionRange: 1.3.0.M2
- name: MyBatis
id: mybatis
description: Persistence support using MyBatis
groupId: org.mybatis.spring.boot
artifactId: mybatis-spring-boot-starter
version: 1.1.1
versionRange: 1.3.0.RELEASE
- name: JDBC
id: jdbc
description: JDBC databases
- name: H2
id: h2
description: H2 database (with embedded support)
groupId: com.h2database
artifactId: h2
scope: runtime
starter: false
- name: HSQLDB
id: hsql
description: HSQLDB database (with embedded support)
groupId: org.hsqldb
artifactId: hsqldb
scope: runtime
starter: false
- name: Apache Derby
id: derby
description: Apache Derby database (with embedded support)
groupId: org.apache.derby
artifactId: derby
scope: runtime
versionRange: 1.2.2.RELEASE
starter: false
- name: MySQL
id: mysql
description: MySQL jdbc driver
groupId: mysql
artifactId: mysql-connector-java
scope: runtime
starter: false
- name: PostgreSQL
id: postgresql
description: PostgreSQL jdbc driver
groupId: org.postgresql
artifactId: postgresql
mappings:
- versionRange: "[1.2.0.RELEASE,1.3.0.M1)"
version: 9.4-1201-jdbc41
scope: runtime
starter: false
- name: SQL Server
id: sqlserver
description: Microsoft SQL Server jdbc driver
versionRange: 1.5.0.RC1
groupId: com.microsoft.sqlserver
artifactId: mssql-jdbc
scope: runtime
starter: false
- name: Flyway
id: flyway
description: Flyway Database Migrations library
groupId: org.flywaydb
artifactId: flyway-core
starter: false
- name: Liquibase
id: liquibase
description: Liquibase Database Migrations library
groupId: org.liquibase
artifactId: liquibase-core
starter: false
- name: NoSQL
content:
- name: MongoDB
id: data-mongodb
description: MongoDB NoSQL Database, including spring-data-mongodb
weight: 50
- name: Cassandra
id: data-cassandra
description: Cassandra NoSQL Database, including spring-data-cassandra
versionRange: 1.3.0.RC1
- name: Couchbase
id: data-couchbase
description: Couchbase NoSQL database, including spring-data-couchbase
versionRange: 1.4.0.M1
- name: Neo4j
id: data-neo4j
description: Neo4j NoSQL graph database, including spring-data-neo4j
versionRange: 1.4.0.M2
- name: Redis
id: data-redis
description: REDIS key-value data store, including spring-redis
aliases:
- redis
mappings:
- versionRange: 1.4.0.M1
artifactId: spring-boot-starter-data-redis
- versionRange: "[1.1.5.RELEASE,1.4.0.M1)"
artifactId: spring-boot-starter-redis
- name: Gemfire
id: data-gemfire
description: GemFire distributed data store including spring-data-gemfire
- name: Solr
id: data-solr
description: Apache Solr search platform, including spring-data-solr
- name: Elasticsearch
id: data-elasticsearch
description: Elasticsearch search and analytics engine including spring-data-elasticsearch
weight: 10
- name: Cloud Core
bom: cloud-bom
versionRange: 1.2.3.RELEASE
content:
- name: Cloud Connectors
id: cloud-connectors
description: Simplifies connecting to services in cloud platforms, including spring-cloud-connector and spring-cloud-cloudfoundry-connector
versionRange: 1.2.0.RELEASE
- name: Cloud Bootstrap
id: cloud-starter
description: spring-cloud-context (e.g. Bootstrap context and @RefreshScope)
groupId: org.springframework.cloud
artifactId: spring-cloud-starter
weight: 100
- name: Cloud Security
id: cloud-security
description: Secure load balancing and routing with spring-cloud-security
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-security
- name: Cloud OAuth2
id: cloud-oauth2
description: OAuth2 and distributed application patterns with spring-cloud-security
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-oauth2
- name: Cloud Task
id: cloud-task
description: Task result tracking along with integration with batch and streams
groupId: org.springframework.cloud
artifactId: spring-cloud-task-starter
- name: Cloud Config
bom: cloud-bom
versionRange: 1.2.3.RELEASE
content:
- name: Config Client
id: cloud-config-client
description: spring-cloud-config Client
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-config
weight: 100
- name: Config Server
id: cloud-config-server
description: Central management for configuration via a git or svn backend
groupId: org.springframework.cloud
artifactId: spring-cloud-config-server
- name: Zookeeper Configuration
id: cloud-starter-zookeeper-config
description: Configuration management with Zookeeper and spring-cloud-zookeeper-config
versionRange: 1.3.0.M4
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-zookeeper-config
- name: Consul Configuration
id: cloud-starter-consul-config
description: Configuration management with Hashicorp Consul
versionRange: 1.3.0.M4
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-consul-config
- name: Cloud Discovery
bom: cloud-bom
versionRange: 1.2.3.RELEASE
content:
- name: Eureka Discovery
id: cloud-eureka
description: Service discovery using spring-cloud-netflix and Eureka
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-eureka
weight: 100
- name: Eureka Server
id: cloud-eureka-server
description: spring-cloud-netflix Eureka Server
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-eureka-server
- name: Zookeeper Discovery
id: cloud-starter-zookeeper-discovery
description: Service discovery with Zookeeper and spring-cloud-zookeeper-discovery
versionRange: 1.3.0.M4
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-zookeeper-discovery
- name: Cloud Foundry Discovery
id: cloud-cloudfoundry-discovery
description: Service discovery with Cloud Foundry
versionRange: 1.3.0.M4
groupId: org.springframework.cloud
artifactId: spring-cloud-cloudfoundry-discovery
- name: Consul Discovery
id: cloud-starter-consul-discovery
description: Service discovery with Hashicorp Consul
versionRange: 1.3.0.M4
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-consul-discovery
- name: Cloud Routing
bom: cloud-bom
versionRange: 1.2.3.RELEASE
content:
- name: Zuul
id: cloud-zuul
description: Intelligent and programmable routing with spring-cloud-netflix Zuul
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-zuul
- name: Ribbon
id: cloud-ribbon
description: Client side load balancing with spring-cloud-netflix and Ribbon
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-ribbon
- name: Feign
id: cloud-feign
description: Declarative REST clients with spring-cloud-netflix Feign
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-feign
- name: Cloud Circuit Breaker
bom: cloud-bom
versionRange: 1.2.3.RELEASE
content:
- name: Hystrix
id: cloud-hystrix
description: Circuit breaker with spring-cloud-netflix Hystrix
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-hystrix
- name: Hystrix Dashboard
id: cloud-hystrix-dashboard
description: Circuit breaker dashboard with spring-cloud-netflix Hystrix
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-hystrix-dashboard
- name: Turbine
id: cloud-turbine
description: Circuit breaker metric aggregation using spring-cloud-netflix with Turbine and server-sent events
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-turbine
- name: Turbine Stream
id: cloud-turbine-stream
description: Circuit breaker metric aggregation using spring-cloud-netflix with Turbine and Spring Cloud Stream (choose a specific Stream binder implementation to complement this)
versionRange: 1.3.0.M5
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-turbine-stream
weight: -1
- name: Cloud Tracing
bom: cloud-bom
versionRange: 1.3.0.M4
content:
- name: Sleuth
id: cloud-starter-sleuth
description: Distributed tracing via logs with spring-cloud-sleuth
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-sleuth
- name: Zipkin Client
id: cloud-starter-zipkin
description: Distributed tracing with an existing Zipkin installation and spring-cloud-sleuth-zipkin. Alternatively, consider Sleuth Stream.
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-zipkin
- name: Sleuth Stream
id: cloud-sleuth-stream
description: Marshals Spring Cloud Sleuth Spans over a Spring Cloud Stream binder
groupId: org.springframework.cloud
artifactId: spring-cloud-sleuth-stream
- name: Zipkin Stream
id: cloud-sleuth-zipkin-stream
description: Consumes span data in messages from Spring Cloud Sleuth Stream and writes them to a Zipkin store
groupId: org.springframework.cloud
artifactId: spring-cloud-sleuth-zipkin-stream
- name: Zipkin UI
id: zipkin-ui
description: add the Zipkin UI module to the Zipkin server to get a Zipkin service that accepts Spans and provides visualization
groupId: io.zipkin.java
artifactId: zipkin-autoconfigure-ui
scope: runtime
versionRange: 1.3.3.RELEASE
starter: false
- name: Zipkin Server
id: zipkin-server
description: Consumes span data over HTTP and writes them to a span store
groupId: io.zipkin.java
artifactId: zipkin-server
starter: false
- name: Cloud Messaging
bom: cloud-bom
versionRange: 1.2.3.RELEASE
content:
- name: Cloud Bus AMQP
id: cloud-bus-amqp
description: A simple control bus with AMQP and spring-cloud-bus-amqp
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-bus-amqp
- name: Cloud Bus Kafka
id: cloud-bus-kafka
description: A simple control bus with Kafka and spring-cloud-bus
versionRange: "(1.3.0.M5,9999.9.9.RELEASE]"
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-bus-kafka
- name: Stream Rabbit
id: cloud-stream-binder-rabbit
description: Messaging microservices with RabbitMQ
versionRange: 1.3.0.M4
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-stream-rabbit
- name: Stream Kafka
id: cloud-stream-binder-kafka
description: Messaging microservices with Kafka
versionRange: 1.3.0.M4
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-stream-kafka
- name: Cloud AWS
bom: cloud-bom
versionRange: 1.2.3.RELEASE
content:
- name: AWS Core
id: cloud-aws
description: AWS native services from spring-cloud-aws
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-aws
- name: AWS JDBC
id: cloud-aws-jdbc
description: Relational databases on AWS with RDS and spring-cloud-aws-jdbc
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-aws-jdbc
- name: AWS Messaging
id: cloud-aws-messaging
description: Messaging on AWS with SQS and spring-cloud-aws-messaging
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-aws-messaging
- name: Cloud Data Flow
bom: cloud-dataflow-bom
versionRange: 1.3.2.RELEASE
content:
- name: Local Data Flow Server
id: cloud-dataflow-server-local
description: Local Data Flow Server implementation
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-dataflow-server-local
- name: Data Flow Shell
id: cloud-dataflow-shell
description: Data Flow Shell
groupId: org.springframework.cloud
artifactId: spring-cloud-dataflow-shell
- name: Cloud Cluster
bom: cloud-bom
versionRange: 1.3.0.M4
content:
- name: Cluster Redis
id: cloud-cluster-redis
description: Leadership election and global state with Redis and spring-cloud-cluster-redis
groupId: org.springframework.cloud
artifactId: spring-cloud-cluster-redis
- name: Cluster Zookeeper
id: cloud-cluster-zookeeper
description: Leadership election and global state with Zookeeper and spring-cloud-cluster-zookeeper
groupId: org.springframework.cloud
artifactId: spring-cloud-cluster-zookeeper
- name: Cluster Hazelcast
id: cloud-cluster-hazelcast
description: Leadership election and global state with Hazelcast and spring-cloud-cluster-hazelcast
groupId: org.springframework.cloud
artifactId: spring-cloud-cluster-hazelcast
- name: Cluster Etcd
id: cloud-cluster-etcd
description: Leadership election and global state with Etcd and spring-cloud-cluster-etcd
groupId: org.springframework.cloud
artifactId: spring-cloud-cluster-etcd
- name: Cloud Contract
bom: cloud-bom
versionRange: 1.4.0.RC1
content:
- name: Cloud Contract Verifier
id: cloud-contract-verifier
description: Test dependencies required for autogenerated tests
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-contract-verifier
scope: test
starter: false
- name: Cloud Contract Stub Runner
id: cloud-contract-stub-runner
description: Stub Runner for HTTP/Messaging based communication
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-contract-stub-runner
scope: test
starter: false
- name: Cloud Contract WireMock
id: cloud-contract-wiremock
description: Test dependencies required for the WireMock HTTP server
groupId: org.springframework.cloud
artifactId: spring-cloud-contract-wiremock
scope: test
starter: false
- name: Pivotal Cloud Foundry
bom: cloud-services-bom
versionRange: 1.3.0.RELEASE
content:
- name: Config Client (PCF)
id: scs-config-client
description: Config client on Pivotal Cloud Foundry
groupId: io.pivotal.spring.cloud
artifactId: spring-cloud-services-starter-config-client
- name: Service Registry (PCF)
id: scs-service-registry
description: Eureka service discovery on Pivotal Cloud Foundry
groupId: io.pivotal.spring.cloud
artifactId: spring-cloud-services-starter-service-registry
- name: Circuit Breaker (PCF)
id: scs-circuit-breaker
description: Hystrix circuit breaker on Pivotal Cloud Foundry
groupId: io.pivotal.spring.cloud
artifactId: spring-cloud-services-starter-circuit-breaker
- name: Social
content:
- name: Facebook
id: social-facebook
description: spring-social-facebook
weight: 25
- name: LinkedIn
id: social-linkedin
description: spring-social-linkedin
- name: Twitter
id: social-twitter
description: spring-social-twitter
- name: I/O
content:
- name: Batch
id: batch
description: Spring Batch including HSQLDB database
- name: Integration
id: integration
description: Common spring-integration modules
- name: Activiti
id: activiti-basic
description: Activiti BPMN workflow engine
groupId: org.activiti
artifactId: activiti-spring-boot-starter-basic
version: 5.21.0
- name: Apache Camel
id: camel
description: Integration using Apache Camel
groupId: org.apache.camel
artifactId: camel-spring-boot-starter
version: 2.18.1
- name: JMS (ActiveMQ)
id: activemq
description: Java Message Service API via Apache ActiveMQ
versionRange: 1.4.0.RC1
- name: JMS (Artemis)
id: artemis
description: Java Message Service API via Apache Artemis
versionRange: 1.3.0.M2
- name: JMS (HornetQ)
id: hornetq
description: Java Message Service API via HornetQ
versionRange: "[1.1.0.RELEASE,1.4.0.RC1)"
- name: AMQP
id: amqp
description: Advanced Message Queuing Protocol via spring-rabbit
- name: Mail
id: mail
description: javax.mail
versionRange: 1.2.0.RC1
- name: Ops
content:
- name: Actuator
id: actuator
description: Production ready features to help you monitor and manage your application
- name: Actuator Docs
id: actuator-docs
description: API documentation for the Actuator endpoints
versionRange: 1.3.0.M4
groupId: org.springframework.boot
artifactId: spring-boot-actuator-docs
- name: Remote Shell
id: remote-shell
description: CRaSH shell integration
- name: Experimental
content:
- name: Reactive Web
id: experimental-web-reactive
groupId: org.springframework.boot.experimental
artifactId: spring-boot-starter-web-reactive
bom: experimental-reactive-bom
versionRange: 2.0.0.BUILD-SNAPSHOT
description: Reactive web development with Apache Tomcat and Spring Reactive (experimental)