Skip to content

Commit 9f84040

Browse files
committed
minimal dependencies
1 parent bab8f9d commit 9f84040

File tree

1 file changed

+26
-10
lines changed

1 file changed

+26
-10
lines changed

hedera-spring/pom.xml

Lines changed: 26 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,31 @@
1919

2020

2121
<dependencies>
22+
<dependency>
23+
<groupId>org.springframework</groupId>
24+
<artifactId>spring-context</artifactId>
25+
<version>6.1.8</version>
26+
</dependency>
27+
<dependency>
28+
<groupId>org.springframework</groupId>
29+
<artifactId>spring-web</artifactId>
30+
<version>6.1.8</version>
31+
</dependency>
32+
<dependency>
33+
<groupId>org.springframework.boot</groupId>
34+
<artifactId>spring-boot-autoconfigure</artifactId>
35+
<version>3.3.0</version>
36+
</dependency>
37+
<dependency>
38+
<groupId>com.fasterxml.jackson.core</groupId>
39+
<artifactId>jackson-databind</artifactId>
40+
<version>2.17.1</version>
41+
</dependency>
2242
<dependency>
2343
<groupId>${project.groupId}</groupId>
2444
<artifactId>hedera-base</artifactId>
2545
<version>${project.version}</version>
2646
</dependency>
27-
<dependency>
28-
<groupId>org.springframework.boot</groupId>
29-
<artifactId>spring-boot-starter</artifactId>
30-
<version>3.3.0</version>
31-
</dependency>
32-
<dependency>
33-
<groupId>org.springframework.boot</groupId>
34-
<artifactId>spring-boot-starter-web</artifactId>
35-
<version>3.3.0</version>
36-
</dependency>
3747
<dependency>
3848
<groupId>io.grpc</groupId>
3949
<artifactId>grpc-okhttp</artifactId>
@@ -52,6 +62,12 @@
5262
<scope>test</scope>
5363
<version>3.3.0</version>
5464
</dependency>
65+
<dependency>
66+
<groupId>org.springframework.boot</groupId>
67+
<artifactId>spring-boot-starter-web</artifactId>
68+
<version>3.3.0</version>
69+
<scope>test</scope>
70+
</dependency>
5571
</dependencies>
5672

5773
<build>

0 commit comments

Comments
 (0)