Files
initializr/initializr-service/src/main/resources/application.yml

852 lines
31 KiB
YAML
Raw Normal View History

logging:
level:
org.springframework.core.env: warn
org.springframework.jndi: warn
server:
compression:
enabled: true
mime-types: application/json,text/css,text/html
min-response-size: 2048
spring:
jackson:
serialization:
write-dates-as-timestamps: false
resources:
chain:
strategy:
content:
enabled: true
initializr:
2015-03-27 10:36:13 +01:00
env:
boms:
cloud-bom:
groupId: org.springframework.cloud
artifactId: spring-cloud-dependencies
mappings:
2017-01-13 13:40:32 -05:00
- versionRange: "[1.2.3.RELEASE,1.3.0.RELEASE)"
version: Angel.SR6
2017-01-13 13:40:32 -05:00
- versionRange: "[1.3.0.RELEASE,1.4.0.RELEASE)"
version: Brixton.SR7
2017-01-13 13:40:32 -05:00
- versionRange: "[1.4.0.RELEASE,1.4.x.BUILD-SNAPSHOT)"
2017-01-12 15:49:39 -05:00
version: Camden.SR4
2017-01-13 13:40:32 -05:00
- versionRange: "[1.4.x.BUILD-SNAPSHOT, 1.5.0.RC1)"
version: Camden.BUILD-SNAPSHOT
2015-11-07 17:20:41 +00:00
repositories: spring-snapshots,spring-milestones
- versionRange: "1.5.0.RC1"
version: Dalston.BUILD-SNAPSHOT
repositories: spring-snapshots,spring-milestones
cloud-dataflow-bom:
groupId: org.springframework.cloud
artifactId: spring-cloud-dataflow-dependencies
additionalBoms: [cloud-bom]
mappings:
2017-01-13 13:40:32 -05:00
- versionRange: "[1.3.2.RELEASE,1.4.0.RELEASE)"
version: 1.0.1.RELEASE
2017-01-13 13:40:32 -05:00
- versionRange: "[1.4.0.RELEASE,1.4.x.BUILD-SNAPSHOT)"
version: 1.1.0.RELEASE
2017-01-13 13:40:32 -05:00
- versionRange: 1.4.x.BUILD-SNAPSHOT
version: 1.1.1.BUILD-SNAPSHOT
repositories: spring-snapshots,spring-milestones
2016-11-09 11:23:04 +01:00
cloud-services-bom:
groupId: io.pivotal.spring.cloud
artifactId: spring-cloud-services-dependencies
additionalBoms: [cloud-bom]
mappings:
2017-01-13 13:40:32 -05:00
- versionRange: "[1.3.0.RELEASE,1.4.0.RELEASE)"
version: 1.2.1.RELEASE
2017-01-13 13:40:32 -05:00
- versionRange: "[1.4.0.RELEASE,1.4.x.BUILD-SNAPSHOT)"
version: 1.3.1.RELEASE
2017-01-13 13:40:32 -05:00
- versionRange: "[1.4.x.BUILD-SNAPSHOT, 1.5.0.RC1)"
version: 1.3.2.BUILD-SNAPSHOT
repositories: spring-snapshots,spring-milestones
cloud-task-bom:
groupId: org.springframework.cloud
artifactId: spring-cloud-task-dependencies
mappings:
2017-01-13 13:40:32 -05:00
- versionRange: "[1.3.0.RELEASE, 1.4.0.RELEASE]"
version: 1.0.3.RELEASE
- versionRange: "[1.4.0.RELEASE,1.4.x.BUILD-SNAPSHOT)"
version: 1.1.2.RELEASE
- versionRange: "[1.4.x.BUILD-SNAPSHOT, 1.5.0.RC1)"
version: 1.1.3.BUILD-SNAPSHOT
repositories: spring-snapshots,spring-milestones
- versionRange: "1.5.0.RC1"
version: 1.2.0.BUILD-SNAPSHOT
repositories: spring-snapshots,spring-milestones
experimental-reactive-bom:
groupId: org.springframework.boot.experimental
artifactId: spring-boot-dependencies-web-reactive
2016-08-03 16:27:12 -07:00
repositories: spring-snapshots,spring-milestones
version: 0.1.0.BUILD-SNAPSHOT
2016-11-09 11:23:04 +01:00
vaadin-bom:
groupId: com.vaadin
artifactId: vaadin-bom
version: 7.7.5
gradle:
dependency-management-plugin-version: 0.6.0.RELEASE
2015-12-30 14:50:44 +01:00
kotlin:
version: 1.0.6
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
2016-08-30 12:39:05 +02:00
- name: Narayana (JTA)
id: jta-narayana
description: JTA distributed transactions via Narayana
versionRange: 1.4.0.M2
2015-06-04 15:14:49 +02:00
- name: Cache
id: cache
description: Spring's Cache abstraction
2015-06-12 09:13:50 +02:00
versionRange: 1.3.0.M1
2015-06-10 18:37:15 +02:00
- name: DevTools
id: devtools
groupId: org.springframework.boot
artifactId: spring-boot-devtools
2016-11-04 11:39:36 +01:00
scope: runtime
description: Spring Boot Development Tools
2015-06-12 09:13:50 +02:00
versionRange: 1.3.0.M1
2015-12-09 15:18:58 +01:00
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 users 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
2015-09-04 09:08:02 +01:00
- name: Lombok
id: lombok
groupId: org.projectlombok
artifactId: lombok
scope: compileOnly
2016-09-02 09:05:11 +02:00
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
2015-12-09 15:18:58 +01:00
starter: false
2014-05-28 19:25:35 +01:00
- 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
2016-05-12 15:58:15 +02:00
- name: Web Services
id: web-services
description: Contract-first SOAP service development with Spring Web Services
2016-05-13 09:35:01 +02:00
aliases:
2016-05-12 15:58:15 +02:00
- 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
2016-09-02 09:24:22 +02:00
description: RESTful Web Services framework
versionRange: 1.2.0.RELEASE
2015-11-13 15:18:06 +00:00
- 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
2015-03-27 10:36:13 +01:00
- name: Vaadin
id: vaadin
facets:
- web
groupId: com.vaadin
artifactId: vaadin-spring-boot-starter
2016-09-02 09:24:22 +02:00
description: Vaadin java web application framework
2015-03-27 10:36:13 +01:00
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
2015-03-10 15:29:18 +01:00
versionRange: 1.2.2.RELEASE
2015-09-03 17:46:25 +01:00
- name: Rest Repositories HAL Browser
id: data-rest-hal
2016-09-02 09:24:22 +02:00
description: Browsing Spring Data REST repositories in your browser
2015-09-03 17:46:25 +01:00
groupId: org.springframework.data
artifactId: spring-data-rest-hal-browser
versionRange: 1.3.0.M1
2015-12-09 15:18:58 +01:00
starter: false
- name: Mobile
id: mobile
description: Simplify the development of mobile web applications with spring-mobile
2015-09-08 17:09:08 +01:00
- name: REST Docs
2015-09-04 09:08:02 +01:00
id: restdocs
description: Document RESTful services by combining hand-written and auto-generated documentation
2015-09-04 09:08:02 +01:00
groupId: org.springframework.restdocs
2015-09-08 17:09:08 +01:00
artifactId: spring-restdocs-mockmvc
mappings:
- versionRange: "[1.2.0.RELEASE,1.3.0.RC1)"
version: 1.0.1.RELEASE
2015-09-04 09:08:02 +01:00
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
2016-03-08 09:03:57 +01:00
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
2015-03-10 15:29:18 +01:00
versionRange: 1.2.2.RELEASE
facets:
- web
keywords:
- template
2016-02-16 14:05:48 +01:00
- 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
2016-10-10 09:44:19 +02:00
- name: MyBatis
id: mybatis
description: Persistence support using MyBatis
groupId: org.mybatis.spring.boot
artifactId: mybatis-spring-boot-starter
mappings:
- versionRange: "[1.3.0.RELEASE,1.4.0.M2)"
version: 1.1.1
- versionRange: 1.4.0.M2
version: 1.2.0
2016-02-16 14:05:48 +01:00
- 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:
2016-02-16 14:05:48 +01:00
- 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
2016-02-16 14:05:48 +01:00
- 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
2016-02-16 14:13:33 +01:00
- name: Couchbase
id: data-couchbase
description: Couchbase NoSQL database, including spring-data-couchbase
versionRange: 1.4.0.M1
2016-03-25 13:17:58 +01:00
- name: Neo4j
id: data-neo4j
description: Neo4j NoSQL graph database, including spring-data-neo4j
2016-05-25 09:20:00 +02:00
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
2016-03-09 09:51:52 +01:00
versionRange: 1.2.3.RELEASE
content:
- name: Cloud Connectors
id: cloud-connectors
2015-10-01 11:09:15 +01:00
description: Simplifies connecting to services in cloud platforms, including spring-cloud-connector and spring-cloud-cloudfoundry-connector
versionRange: 1.2.0.RELEASE
2015-06-05 15:16:20 +01:00
- name: Cloud Bootstrap
id: cloud-starter
description: spring-cloud-context (e.g. Bootstrap context and @RefreshScope)
2015-06-05 15:16:20 +01:00
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
2015-11-13 15:08:14 +00:00
- 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
versionRange: 1.3.0.RELEASE
bom: cloud-task-bom
mappings:
- versionRange: "[1.3.0.RELEASE,1.3.x.RELEASE]"
groupId: org.springframework.cloud
artifactId: spring-cloud-task-starter
- versionRange: "1.4.0.RELEASE"
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-task
- name: Cloud Config
bom: cloud-bom
2016-03-09 09:51:52 +01:00
versionRange: 1.2.3.RELEASE
content:
2015-06-05 15:16:20 +01:00
- name: Config Client
id: cloud-config-client
description: spring-cloud-config Client
2015-06-05 15:16:20 +01:00
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
2016-03-09 09:51:52 +01:00
versionRange: 1.2.3.RELEASE
content:
2015-09-13 18:53:57 -04:00
- 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
2016-03-09 09:51:52 +01:00
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
2016-03-09 09:51:52 +01:00
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)
2016-03-09 09:51:52 +01:00
versionRange: 1.3.0.M5
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-turbine-stream
weight: -1
- name: Cloud Tracing
bom: cloud-bom
2016-03-09 09:51:52 +01:00
versionRange: 1.3.0.M4
content:
2015-09-03 09:50:07 +01:00
- name: Sleuth
id: cloud-starter-sleuth
description: Distributed tracing via logs with spring-cloud-sleuth
2015-09-03 09:50:07 +01:00
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-sleuth
- name: Zipkin Client
2015-09-04 08:46:59 +01:00
id: cloud-starter-zipkin
description: Distributed tracing with an existing Zipkin installation and spring-cloud-sleuth-zipkin. Alternatively, consider Sleuth Stream.
2015-09-03 09:50:07 +01:00
groupId: org.springframework.cloud
2015-09-04 08:46:59 +01:00
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
2016-06-15 14:57:48 +01:00
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
2016-03-09 09:51:52 +01:00
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
2017-01-13 13:40:32 -05:00
versionRange: "1.3.0.RELEASE"
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-bus-kafka
2015-09-03 09:50:07 +01:00
- name: Stream Rabbit
id: cloud-stream-binder-rabbit
description: Messaging microservices with RabbitMQ
2015-09-03 09:50:07 +01:00
versionRange: 1.3.0.M4
groupId: org.springframework.cloud
2015-09-03 12:41:26 +01:00
artifactId: spring-cloud-starter-stream-rabbit
2015-09-03 09:50:07 +01:00
- name: Stream Kafka
id: cloud-stream-binder-kafka
description: Messaging microservices with Kafka
2015-09-03 09:50:07 +01:00
versionRange: 1.3.0.M4
groupId: org.springframework.cloud
2015-09-03 12:41:26 +01:00
artifactId: spring-cloud-starter-stream-kafka
- name: Cloud AWS
bom: cloud-bom
2016-03-09 09:51:52 +01:00
versionRange: 1.2.3.RELEASE
content:
- name: AWS Core
id: cloud-aws
description: AWS native services from spring-cloud-aws
2015-09-03 09:50:07 +01:00
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
2015-09-03 09:50:07 +01:00
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
2015-09-03 09:50:07 +01:00
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-aws-messaging
2016-02-01 12:48:57 -08:00
- name: Cloud Data Flow
bom: cloud-dataflow-bom
2016-03-09 09:51:52 +01:00
versionRange: 1.3.2.RELEASE
2016-02-01 12:48:57 -08:00
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
2016-03-09 09:51:52 +01:00
versionRange: 1.3.0.M4
content:
2015-09-03 12:41:26 +01:00
- name: Cluster Redis
id: cloud-cluster-redis
description: Leadership election and global state with Redis and spring-cloud-cluster-redis
2015-09-03 12:41:26 +01:00
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
2015-09-03 12:41:26 +01:00
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
2015-09-03 12:41:26 +01:00
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
2016-07-22 17:06:52 +02:00
versionRange: 1.4.0.RC1
content:
- name: Cloud Contract Verifier
id: cloud-contract-verifier
2016-07-22 17:06:52 +02:00
description: Test dependencies required for autogenerated tests
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-contract-verifier
scope: test
2016-07-22 17:06:52 +02:00
starter: false
- name: Cloud Contract Stub Runner
id: cloud-contract-stub-runner
2016-07-22 17:06:52 +02:00
description: Stub Runner for HTTP/Messaging based communication
groupId: org.springframework.cloud
artifactId: spring-cloud-starter-contract-stub-runner
scope: test
2016-07-22 17:06:52 +02:00
starter: false
- name: Cloud Contract WireMock
id: cloud-contract-wiremock
2016-07-22 17:06:52 +02:00
description: Test dependencies required for the WireMock HTTP server
groupId: org.springframework.cloud
artifactId: spring-cloud-contract-wiremock
scope: test
2016-07-22 17:06:52 +02:00
starter: false
2016-06-09 14:41:41 +02:00
- name: Pivotal Cloud Foundry
2016-11-09 11:23:04 +01:00
bom: cloud-services-bom
versionRange: "[1.3.0.RELEASE,1.5.0.RC1)"
content:
2016-06-09 14:41:41 +02:00
- name: Config Client (PCF)
id: scs-config-client
2016-06-09 14:41:41 +02:00
description: Config client on Pivotal Cloud Foundry
groupId: io.pivotal.spring.cloud
artifactId: spring-cloud-services-starter-config-client
2016-06-09 14:41:41 +02:00
- name: Service Registry (PCF)
id: scs-service-registry
2016-06-09 14:41:41 +02:00
description: Eureka service discovery on Pivotal Cloud Foundry
groupId: io.pivotal.spring.cloud
artifactId: spring-cloud-services-starter-service-registry
2016-06-09 14:41:41 +02:00
- name: Circuit Breaker (PCF)
id: scs-circuit-breaker
2016-06-09 14:41:41 +02:00
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
2015-11-12 12:24:20 +01:00
- 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
2016-07-10 11:37:11 +02:00
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
2017-01-07 08:50:45 +01:00
- name: LDAP
id: data-ldap
description: LDAP support, including spring-data-ldap
versionRange: 1.5.0.RC1
- name: Ops
content:
- name: Actuator
id: actuator
description: Production ready features to help you monitor and manage your application
2015-09-03 17:46:25 +01:00
- 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
2017-01-07 08:54:55 +01:00
versionRange: "[1.0.0.RELEASE,1.5.0.RC1)"
2016-09-02 09:06:45 +02:00
- 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
2016-09-02 09:24:22 +02:00
description: Reactive web development with Apache Tomcat and Spring Reactive (experimental)
2014-05-28 19:25:35 +01:00
types:
- name: Maven Project
id: maven-project
description: Generate a Maven based project archive
sts-id: starter.zip
tags:
build: maven
format: project
default: true
action: /starter.zip
- name: Maven POM
id: maven-build
description: Generate a Maven pom.xml
sts-id: pom.xml
tags:
build: maven
format: build
default: false
action: /pom.xml
- name: Gradle Project
id: gradle-project
2015-02-19 22:22:11 +01:00
description: Generate a Gradle based project archive
sts-id: gradle.zip
tags:
build: gradle
format: project
default: false
action: /starter.zip
- name: Gradle Config
id: gradle-build
description: Generate a Gradle build file
sts-id: build.gradle
tags:
build: gradle
format: build
default: false
action: /build.gradle
2014-05-29 16:26:47 +01:00
packagings:
- name: Jar
id: jar
default: true
2014-05-29 16:26:47 +01:00
- name: War
id: war
default: false
2014-05-30 06:18:33 +01:00
javaVersions:
- id: 1.8
default: true
- id: 1.7
default: false
- id: 1.6
default: false
languages:
2014-05-30 09:50:24 +01:00
- name: Java
id: java
default: true
- name: Groovy
id: groovy
default: false
2015-11-19 11:50:34 +01:00
- name: Kotlin
id: kotlin
default: false
2014-06-24 09:42:54 +01:00
bootVersions:
- name : Latest SNAPSHOT
2015-04-20 15:18:27 +02:00
id: 1.2.4.BUILD-SNAPSHOT
default: false
2015-04-20 15:18:27 +02:00
- name: 1.2.3
id: 1.2.3.RELEASE
default: true
2015-04-20 15:18:27 +02:00
- name: 1.1.12
id: 1.1.12.RELEASE
default: false