Skip to content

Commit 93d6d24

Browse files
author
sumit.sg34
committed
formatting done : removing tabs
1 parent 7bb364a commit 93d6d24

File tree

3 files changed

+53
-52
lines changed

3 files changed

+53
-52
lines changed
Lines changed: 37 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,41 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5-
<modelVersion>4.0.0</modelVersion>
6-
<groupId>com.baeldung</groupId>
7-
<artifactId>spring-data-jpa-2</artifactId>
8-
<name>spring-data-jpa</name>
9-
10-
<parent>
11-
<artifactId>parent-boot-2</artifactId>
12-
<groupId>com.baeldung</groupId>
13-
<version>0.0.1-SNAPSHOT</version>
14-
<relativePath>../../parent-boot-2</relativePath>
15-
</parent>
16-
17-
<dependencies>
18-
<dependency>
19-
<groupId>org.springframework.boot</groupId>
20-
<artifactId>spring-boot-starter-data-jpa</artifactId>
21-
</dependency>
22-
23-
<dependency>
24-
<groupId>com.h2database</groupId>
25-
<artifactId>h2</artifactId>
26-
</dependency>
27-
28-
<dependency>
29-
<groupId>com.fasterxml.jackson.core</groupId>
30-
<artifactId>jackson-databind</artifactId>
31-
</dependency>
32-
33-
<dependency>
34-
<groupId>org.springframework</groupId>
35-
<artifactId>spring-oxm</artifactId>
36-
</dependency>
37-
38-
</dependencies>
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>com.baeldung</groupId>
8+
<artifactId>spring-data-jpa-2</artifactId>
9+
<name>spring-data-jpa</name>
10+
11+
<parent>
12+
<artifactId>parent-boot-2</artifactId>
13+
<groupId>com.baeldung</groupId>
14+
<version>0.0.1-SNAPSHOT</version>
15+
<relativePath>../../parent-boot-2</relativePath>
16+
</parent>
17+
18+
<dependencies>
19+
<dependency>
20+
<groupId>org.springframework.boot</groupId>
21+
<artifactId>spring-boot-starter-data-jpa</artifactId>
22+
</dependency>
23+
24+
<dependency>
25+
<groupId>com.h2database</groupId>
26+
<artifactId>h2</artifactId>
27+
</dependency>
28+
29+
<dependency>
30+
<groupId>com.fasterxml.jackson.core</groupId>
31+
<artifactId>jackson-databind</artifactId>
32+
</dependency>
33+
34+
<dependency>
35+
<groupId>org.springframework</groupId>
36+
<artifactId>spring-oxm</artifactId>
37+
</dependency>
38+
39+
</dependencies>
3940

4041
</project>
Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
[
2-
{
3-
"_class": "com.baeldung.entity.Fruit",
4-
"name": "apple",
5-
"color": "red",
6-
"id": 1
7-
},
8-
{
9-
"_class": "com.baeldung.entity.Fruit",
10-
"name": "guava",
11-
"color": "green",
12-
"id": 2
13-
}
1+
[
2+
{
3+
"_class": "com.baeldung.entity.Fruit",
4+
"name": "apple",
5+
"color": "red",
6+
"id": 1
7+
},
8+
{
9+
"_class": "com.baeldung.entity.Fruit",
10+
"name": "guava",
11+
"color": "green",
12+
"id": 2
13+
}
1414
]
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

33
<fruit>
4-
<id>1</id>
5-
<name>apple</name>
6-
<color>red</color>
4+
<id>1</id>
5+
<name>apple</name>
6+
<color>red</color>
77
</fruit>

0 commit comments

Comments
 (0)