Skip to content
This repository was archived by the owner on Dec 18, 2025. It is now read-only.

Commit cf1a679

Browse files
Merge pull request #34 from contentstack/development
Development
2 parents c5517b9 + 9de989f commit cf1a679

File tree

4 files changed

+18
-43
lines changed

4 files changed

+18
-43
lines changed

.github/workflows/sast-scan.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

.github/workflows/sca-scan.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

.github/workflows/secrets-scan.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

pom.xml

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,49 +16,61 @@
1616
<description>Demo project for graphql-springboot-api-integration</description>
1717
<properties>
1818
<java.version>1.8</java.version>
19+
<spring-boot.version>3.1.3</spring-boot.version>
20+
<json-smart.version>5.2.2</json-smart.version>
1921
</properties>
2022

21-
2223
<dependencies>
2324
<dependency>
2425
<groupId>org.springframework.boot</groupId>
2526
<artifactId>spring-boot-starter-web</artifactId>
26-
<version>2.5.4</version>
27+
<version>${spring-boot.version}</version>
2728
</dependency>
2829
<dependency>
2930
<groupId>org.springframework.boot</groupId>
3031
<artifactId>spring-boot-starter-freemarker</artifactId>
32+
<version>${spring-boot.version}</version>
3133
</dependency>
3234
<dependency>
3335
<groupId>org.springframework.boot</groupId>
3436
<artifactId>spring-boot-starter-thymeleaf</artifactId>
37+
<version>${spring-boot.version}</version>
3538
</dependency>
3639
<dependency>
3740
<groupId>org.springframework.boot</groupId>
3841
<artifactId>spring-boot-starter</artifactId>
42+
<version>${spring-boot.version}</version>
3943
</dependency>
4044
<dependency>
4145
<groupId>io.github.cdimascio</groupId>
4246
<artifactId>java-dotenv</artifactId>
43-
<version>5.2.2</version>
47+
<version>${json-smart.version}</version>
4448
</dependency>
49+
50+
<!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
4551
<dependency>
4652
<groupId>org.projectlombok</groupId>
4753
<artifactId>lombok</artifactId>
48-
<optional>true</optional>
54+
<version>1.18.28</version>
55+
<scope>provided</scope>
4956
</dependency>
57+
58+
<!-- https://mvnrepository.com/artifact/net.minidev/json-smart -->
5059
<dependency>
5160
<groupId>net.minidev</groupId>
5261
<artifactId>json-smart</artifactId>
53-
<version>2.4.7</version>
62+
<version>2.5.0</version>
5463
</dependency>
64+
65+
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-test -->
5566
<dependency>
5667
<groupId>org.springframework.boot</groupId>
5768
<artifactId>spring-boot-test</artifactId>
58-
<version>2.5.1</version>
69+
<version>${spring-boot.version}</version>
5970
<scope>test</scope>
6071
</dependency>
6172

73+
6274
</dependencies>
6375

6476
<build>

0 commit comments

Comments
 (0)