Add a starter for building a RESTful service with Spring HATEOAS
Closes gh-2396
This commit is contained in:
@@ -120,6 +120,7 @@
|
||||
<spring-integration.version>4.1.2.RELEASE</spring-integration.version>
|
||||
<spring-loaded.version>1.2.1.RELEASE</spring-loaded.version>
|
||||
<spring-mobile.version>1.1.3.RELEASE</spring-mobile.version>
|
||||
<spring-plugin.version>1.1.0.RELEASE</spring-plugin.version>
|
||||
<spring-security.version>3.2.5.RELEASE</spring-security.version>
|
||||
<spring-security-jwt.version>1.0.2.RELEASE</spring-security-jwt.version>
|
||||
<spring-social.version>1.1.0.RELEASE</spring-social.version>
|
||||
@@ -262,6 +263,11 @@
|
||||
<artifactId>spring-boot-starter-groovy-templates</artifactId>
|
||||
<version>1.2.2.BUILD-SNAPSHOT</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-hateoas</artifactId>
|
||||
<version>1.2.2.BUILD-SNAPSHOT</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-hornetq</artifactId>
|
||||
@@ -1377,6 +1383,11 @@
|
||||
<artifactId>spring-mobile-device</artifactId>
|
||||
<version>${spring-mobile.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.plugin</groupId>
|
||||
<artifactId>spring-plugin-core</artifactId>
|
||||
<version>${spring-plugin.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.security</groupId>
|
||||
<artifactId>spring-security-bom</artifactId>
|
||||
|
||||
@@ -264,6 +264,9 @@ and Hibernate.
|
||||
|`spring-boot-starter-groovy-templates`
|
||||
|Support for the Groovy templating engine
|
||||
|
||||
|`spring-boot-starter-hateoas`
|
||||
|Supported for HATEOAS-based RESTful services via `spring-hateoas`.
|
||||
|
||||
|`spring-boot-starter-hornetq`
|
||||
|Support for "`Java Message Service API`" via HornetQ.
|
||||
|
||||
|
||||
@@ -21,16 +21,7 @@
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-web</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.hateoas</groupId>
|
||||
<artifactId>spring-hateoas</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.plugin</groupId>
|
||||
<artifactId>spring-plugin-core</artifactId>
|
||||
<version>1.1.0.RELEASE</version>
|
||||
<artifactId>spring-boot-starter-hateoas</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
|
||||
@@ -33,6 +33,7 @@
|
||||
<module>spring-boot-starter-data-solr</module>
|
||||
<module>spring-boot-starter-freemarker</module>
|
||||
<module>spring-boot-starter-groovy-templates</module>
|
||||
<module>spring-boot-starter-hateoas</module>
|
||||
<module>spring-boot-starter-hornetq</module>
|
||||
<module>spring-boot-starter-integration</module>
|
||||
<module>spring-boot-starter-jdbc</module>
|
||||
|
||||
35
spring-boot-starters/spring-boot-starter-hateoas/pom.xml
Normal file
35
spring-boot-starters/spring-boot-starter-hateoas/pom.xml
Normal file
@@ -0,0 +1,35 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starters</artifactId>
|
||||
<version>1.2.2.BUILD-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>spring-boot-starter-hateoas</artifactId>
|
||||
<name>Spring Boot HATEOAS Starter</name>
|
||||
<description>Spring Boot HATEOAS Starter</description>
|
||||
<url>http://projects.spring.io/spring-boot/</url>
|
||||
<organization>
|
||||
<name>Pivotal Software, Inc.</name>
|
||||
<url>http://www.spring.io</url>
|
||||
</organization>
|
||||
<properties>
|
||||
<main.basedir>${basedir}/../..</main.basedir>
|
||||
</properties>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-web</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.hateoas</groupId>
|
||||
<artifactId>spring-hateoas</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.plugin</groupId>
|
||||
<artifactId>spring-plugin-core</artifactId>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
@@ -0,0 +1 @@
|
||||
provides: spring-hateoas
|
||||
Reference in New Issue
Block a user