File tree 6 files changed +52
-10
lines changed
spring-boot-docs/src/main/asciidoc
spring-boot-samples/spring-boot-sample-hateoas
spring-boot-starter-hateoas
src/main/resources/META-INF
6 files changed +52
-10
lines changed Original file line number Diff line number Diff line change 120
120
<spring-integration .version>4.1.2.RELEASE</spring-integration .version>
121
121
<spring-loaded .version>1.2.1.RELEASE</spring-loaded .version>
122
122
<spring-mobile .version>1.1.3.RELEASE</spring-mobile .version>
123
+ <spring-plugin .version>1.1.0.RELEASE</spring-plugin .version>
123
124
<spring-security .version>3.2.5.RELEASE</spring-security .version>
124
125
<spring-security-jwt .version>1.0.2.RELEASE</spring-security-jwt .version>
125
126
<spring-social .version>1.1.0.RELEASE</spring-social .version>
262
263
<artifactId >spring-boot-starter-groovy-templates</artifactId >
263
264
<version >1.2.2.BUILD-SNAPSHOT</version >
264
265
</dependency >
266
+ <dependency >
267
+ <groupId >org.springframework.boot</groupId >
268
+ <artifactId >spring-boot-starter-hateoas</artifactId >
269
+ <version >1.2.2.BUILD-SNAPSHOT</version >
270
+ </dependency >
265
271
<dependency >
266
272
<groupId >org.springframework.boot</groupId >
267
273
<artifactId >spring-boot-starter-hornetq</artifactId >
1377
1383
<artifactId >spring-mobile-device</artifactId >
1378
1384
<version >${spring-mobile.version} </version >
1379
1385
</dependency >
1386
+ <dependency >
1387
+ <groupId >org.springframework.plugin</groupId >
1388
+ <artifactId >spring-plugin-core</artifactId >
1389
+ <version >${spring-plugin.version} </version >
1390
+ </dependency >
1380
1391
<dependency >
1381
1392
<groupId >org.springframework.security</groupId >
1382
1393
<artifactId >spring-security-bom</artifactId >
Original file line number Diff line number Diff line change @@ -264,6 +264,9 @@ and Hibernate.
264
264
|`spring-boot-starter-groovy-templates`
265
265
|Support for the Groovy templating engine
266
266
267
+ |`spring-boot-starter-hateoas`
268
+ |Supported for HATEOAS-based RESTful services via `spring-hateoas`.
269
+
267
270
|`spring-boot-starter-hornetq`
268
271
|Support for "`Java Message Service API`" via HornetQ.
269
272
Original file line number Diff line number Diff line change 21
21
<dependencies >
22
22
<dependency >
23
23
<groupId >org.springframework.boot</groupId >
24
- <artifactId >spring-boot-starter-web</artifactId >
25
- </dependency >
26
- <dependency >
27
- <groupId >org.springframework.hateoas</groupId >
28
- <artifactId >spring-hateoas</artifactId >
29
- </dependency >
30
- <dependency >
31
- <groupId >org.springframework.plugin</groupId >
32
- <artifactId >spring-plugin-core</artifactId >
33
- <version >1.1.0.RELEASE</version >
24
+ <artifactId >spring-boot-starter-hateoas</artifactId >
34
25
</dependency >
35
26
<dependency >
36
27
<groupId >org.springframework.boot</groupId >
Original file line number Diff line number Diff line change 33
33
<module >spring-boot-starter-data-solr</module >
34
34
<module >spring-boot-starter-freemarker</module >
35
35
<module >spring-boot-starter-groovy-templates</module >
36
+ <module >spring-boot-starter-hateoas</module >
36
37
<module >spring-boot-starter-hornetq</module >
37
38
<module >spring-boot-starter-integration</module >
38
39
<module >spring-boot-starter-jdbc</module >
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <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" >
3
+ <modelVersion >4.0.0</modelVersion >
4
+ <parent >
5
+ <groupId >org.springframework.boot</groupId >
6
+ <artifactId >spring-boot-starters</artifactId >
7
+ <version >1.2.2.BUILD-SNAPSHOT</version >
8
+ </parent >
9
+ <artifactId >spring-boot-starter-hateoas</artifactId >
10
+ <name >Spring Boot HATEOAS Starter</name >
11
+ <description >Spring Boot HATEOAS Starter</description >
12
+ <url >http://projects.spring.io/spring-boot/</url >
13
+ <organization >
14
+ <name >Pivotal Software, Inc.</name >
15
+ <url >http://www.spring.io</url >
16
+ </organization >
17
+ <properties >
18
+ <main .basedir>${basedir} /../..</main .basedir>
19
+ </properties >
20
+ <dependencies >
21
+ <dependency >
22
+ <groupId >org.springframework.boot</groupId >
23
+ <artifactId >spring-boot-starter-web</artifactId >
24
+ </dependency >
25
+ <dependency >
26
+ <groupId >org.springframework.hateoas</groupId >
27
+ <artifactId >spring-hateoas</artifactId >
28
+ </dependency >
29
+ <dependency >
30
+ <groupId >org.springframework.plugin</groupId >
31
+ <artifactId >spring-plugin-core</artifactId >
32
+ <scope >runtime</scope >
33
+ </dependency >
34
+ </dependencies >
35
+ </project >
Original file line number Diff line number Diff line change
1
+ provides: spring-hateoas
You can’t perform that action at this time.
0 commit comments