File tree Expand file tree Collapse file tree 9 files changed +56
-19
lines changed
spring-boot-starter-data-rest
spring-boot-starter-jersey
src/main/resources/META-INF
spring-boot-starter-webflux
src/main/resources/META-INF Expand file tree Collapse file tree 9 files changed +56
-19
lines changed Original file line number Diff line number Diff line change 448
448
<artifactId >spring-boot-starter-jooq</artifactId >
449
449
<version >2.0.0.BUILD-SNAPSHOT</version >
450
450
</dependency >
451
+ <dependency >
452
+ <groupId >org.springframework.boot</groupId >
453
+ <artifactId >spring-boot-starter-json</artifactId >
454
+ <version >2.0.0.BUILD-SNAPSHOT</version >
455
+ </dependency >
451
456
<dependency >
452
457
<groupId >org.springframework.boot</groupId >
453
458
<artifactId >spring-boot-starter-jta-atomikos</artifactId >
Original file line number Diff line number Diff line change 49
49
<module >spring-boot-starter-jersey</module >
50
50
<module >spring-boot-starter-jetty</module >
51
51
<module >spring-boot-starter-jooq</module >
52
+ <module >spring-boot-starter-json</module >
52
53
<module >spring-boot-starter-jta-atomikos</module >
53
54
<module >spring-boot-starter-jta-bitronix</module >
54
55
<module >spring-boot-starter-jta-narayana</module >
Original file line number Diff line number Diff line change 25
25
</dependency >
26
26
<dependency >
27
27
<groupId >org.springframework.boot</groupId >
28
- <artifactId >spring-boot-starter-web</artifactId >
29
- </dependency >
30
- <dependency >
31
- <groupId >com.fasterxml.jackson.core</groupId >
32
- <artifactId >jackson-annotations</artifactId >
28
+ <artifactId >spring-boot-starter-json</artifactId >
33
29
</dependency >
34
30
<dependency >
35
- <groupId >com.fasterxml.jackson.core </groupId >
36
- <artifactId >jackson-databind </artifactId >
31
+ <groupId >org.springframework.boot </groupId >
32
+ <artifactId >spring-boot-starter-web </artifactId >
37
33
</dependency >
38
34
<dependency >
39
35
<groupId >org.springframework.data</groupId >
Original file line number Diff line number Diff line change 25
25
</dependency >
26
26
<dependency >
27
27
<groupId >org.springframework.boot</groupId >
28
- <artifactId >spring-boot-starter-tomcat </artifactId >
28
+ <artifactId >spring-boot-starter-json </artifactId >
29
29
</dependency >
30
30
<dependency >
31
31
<groupId >org.springframework.boot</groupId >
32
- <artifactId >spring-boot-starter-validation </artifactId >
32
+ <artifactId >spring-boot-starter-tomcat </artifactId >
33
33
</dependency >
34
34
<dependency >
35
- <groupId >com.fasterxml.jackson.core </groupId >
36
- <artifactId >jackson-databind </artifactId >
35
+ <groupId >org.springframework.boot </groupId >
36
+ <artifactId >spring-boot-starter-validation </artifactId >
37
37
</dependency >
38
38
<dependency >
39
39
<groupId >org.springframework</groupId >
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 >2.0.0.BUILD-SNAPSHOT</version >
8
+ </parent >
9
+ <artifactId >spring-boot-starter-json</artifactId >
10
+ <name >Spring Boot Json Starter</name >
11
+ <description >Starter for reading and writing json</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 >com.fasterxml.jackson.core</groupId >
23
+ <artifactId >jackson-databind</artifactId >
24
+ </dependency >
25
+ <dependency >
26
+ <groupId >com.fasterxml.jackson.datatype</groupId >
27
+ <artifactId >jackson-datatype-jdk8</artifactId >
28
+ </dependency >
29
+ <dependency >
30
+ <groupId >com.fasterxml.jackson.datatype</groupId >
31
+ <artifactId >jackson-datatype-jsr310</artifactId >
32
+ </dependency >
33
+ </dependencies >
34
+ </project >
Original file line number Diff line number Diff line change
1
+ provides: jackson-databind,jackson-datatype-jdk8,jackson-datatype-jsr310
Original file line number Diff line number Diff line change 23
23
<groupId >org.springframework.boot</groupId >
24
24
<artifactId >spring-boot-starter</artifactId >
25
25
</dependency >
26
+ <dependency >
27
+ <groupId >org.springframework.boot</groupId >
28
+ <artifactId >spring-boot-starter-json</artifactId >
29
+ </dependency >
26
30
<dependency >
27
31
<groupId >org.springframework.boot</groupId >
28
32
<artifactId >spring-boot-starter-tomcat</artifactId >
31
35
<groupId >org.hibernate</groupId >
32
36
<artifactId >hibernate-validator</artifactId >
33
37
</dependency >
34
- <dependency >
35
- <groupId >com.fasterxml.jackson.core</groupId >
36
- <artifactId >jackson-databind</artifactId >
37
- </dependency >
38
38
<dependency >
39
39
<groupId >org.springframework</groupId >
40
40
<artifactId >spring-web</artifactId >
Original file line number Diff line number Diff line change 25
25
</dependency >
26
26
<dependency >
27
27
<groupId >org.springframework.boot</groupId >
28
- <artifactId >spring-boot-starter-reactor-netty </artifactId >
28
+ <artifactId >spring-boot-starter-json </artifactId >
29
29
</dependency >
30
30
<dependency >
31
- <groupId >com.fasterxml.jackson.core </groupId >
32
- <artifactId >jackson-databind </artifactId >
31
+ <groupId >org.springframework.boot </groupId >
32
+ <artifactId >spring-boot-starter-reactor-netty </artifactId >
33
33
</dependency >
34
34
<dependency >
35
35
<groupId >org.hibernate</groupId >
Original file line number Diff line number Diff line change 1
- provides: spring-webflux
1
+ provides: spring-webflux,jackson-databind
You can’t perform that action at this time.
0 commit comments