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

Commit cd41600

Browse files
shaileshmishrashaileshmishra
authored andcommitted
🔨 refactored credentials
1 parent b641ad1 commit cd41600

File tree

19 files changed

+325
-367
lines changed

19 files changed

+325
-367
lines changed

pom.xml

Lines changed: 108 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -18,81 +18,45 @@
1818
<java.version>1.8</java.version>
1919
</properties>
2020

21+
2122
<dependencies>
2223
<dependency>
2324
<groupId>org.springframework.boot</groupId>
24-
<artifactId>spring-boot-starter-data-rest</artifactId>
25+
<artifactId>spring-boot-starter-web</artifactId>
2526
</dependency>
2627
<dependency>
2728
<groupId>org.springframework.boot</groupId>
28-
<artifactId>spring-boot-starter-jersey</artifactId>
29+
<artifactId>spring-boot-starter-freemarker</artifactId>
2930
</dependency>
3031
<dependency>
3132
<groupId>org.springframework.boot</groupId>
3233
<artifactId>spring-boot-starter-thymeleaf</artifactId>
3334
</dependency>
3435
<dependency>
3536
<groupId>org.springframework.boot</groupId>
36-
<artifactId>spring-boot-starter-freemarker</artifactId>
37-
</dependency>
38-
<dependency>
39-
<groupId>org.springframework.boot</groupId>
40-
<artifactId>spring-boot-starter-web</artifactId>
37+
<artifactId>spring-boot-starter</artifactId>
4138
</dependency>
4239
<dependency>
43-
<groupId>org.springframework.boot</groupId>
44-
<artifactId>spring-boot-starter-web-services</artifactId>
40+
<groupId>com.contentstack.sdk</groupId>
41+
<artifactId>java</artifactId>
42+
<version>1.5.3</version>
4543
</dependency>
4644

4745
<dependency>
48-
<groupId>org.springframework.boot</groupId>
49-
<artifactId>spring-boot-devtools</artifactId>
50-
<scope>runtime</scope>
51-
<optional>true</optional>
46+
<groupId>io.github.cdimascio</groupId>
47+
<artifactId>java-dotenv</artifactId>
48+
<version>5.2.2</version>
5249
</dependency>
5350
<dependency>
5451
<groupId>org.projectlombok</groupId>
5552
<artifactId>lombok</artifactId>
5653
<optional>true</optional>
5754
</dependency>
5855
<dependency>
59-
<groupId>org.springframework.boot</groupId>
60-
<artifactId>spring-boot-starter-test</artifactId>
61-
<scope>test</scope>
62-
</dependency>
63-
<dependency>
64-
<groupId>org.hibernate</groupId>
65-
<artifactId>hibernate-core</artifactId>
66-
</dependency>
67-
<dependency>
68-
<groupId>com.graphql-java</groupId>
69-
<artifactId>graphql-spring-boot-autoconfigure</artifactId>
70-
<version>5.0.2</version>
56+
<groupId>net.minidev</groupId>
57+
<artifactId>json-smart</artifactId>
58+
<version>2.3</version>
7159
</dependency>
72-
<dependency>
73-
<groupId>com.graphql-java</groupId>
74-
<artifactId>graphql-java-servlet</artifactId>
75-
<version>6.1.3</version>
76-
</dependency>
77-
78-
79-
<dependency>
80-
<groupId>io.github.cdimascio</groupId>
81-
<artifactId>java-dotenv</artifactId>
82-
<version>5.2.2</version>
83-
</dependency>
84-
85-
<!-- <dependency>-->
86-
<!-- <groupId>org.springframework</groupId>-->
87-
<!-- <artifactId>spring-context</artifactId>-->
88-
<!-- <version>5.2.2.RELEASE</version>-->
89-
<!-- </dependency>-->
90-
91-
<!-- <dependency>-->
92-
<!-- <groupId>org.springframework</groupId>-->
93-
<!-- <artifactId>spring-web</artifactId>-->
94-
<!-- <version>5.2.2.RELEASE</version>-->
95-
<!-- </dependency>-->
9660

9761
</dependencies>
9862

@@ -101,16 +65,103 @@
10165
<plugin>
10266
<groupId>org.springframework.boot</groupId>
10367
<artifactId>spring-boot-maven-plugin</artifactId>
104-
<configuration>
105-
<excludes>
106-
<exclude>
107-
<groupId>org.projectlombok</groupId>
108-
<artifactId>lombok</artifactId>
109-
</exclude>
110-
</excludes>
111-
</configuration>
11268
</plugin>
11369
</plugins>
11470
</build>
11571

72+
<!-- <dependencies>-->
73+
<!-- <dependency>-->
74+
<!-- <groupId>org.springframework.boot</groupId>-->
75+
<!-- <artifactId>spring-boot-starter-data-rest</artifactId>-->
76+
<!-- </dependency>-->
77+
<!-- <dependency>-->
78+
<!-- <groupId>org.springframework.boot</groupId>-->
79+
<!-- <artifactId>spring-boot-starter-jersey</artifactId>-->
80+
<!-- </dependency>-->
81+
<!-- <dependency>-->
82+
<!-- <groupId>org.springframework.boot</groupId>-->
83+
<!-- <artifactId>spring-boot-starter-thymeleaf</artifactId>-->
84+
<!-- </dependency>-->
85+
<!-- <dependency>-->
86+
<!-- <groupId>org.springframework.boot</groupId>-->
87+
<!-- <artifactId>spring-boot-starter-freemarker</artifactId>-->
88+
<!-- </dependency>-->
89+
<!-- <dependency>-->
90+
<!-- <groupId>org.springframework.boot</groupId>-->
91+
<!-- <artifactId>spring-boot-starter-web</artifactId>-->
92+
<!-- </dependency>-->
93+
<!-- <dependency>-->
94+
<!-- <groupId>org.springframework.boot</groupId>-->
95+
<!-- <artifactId>spring-boot-starter-web-services</artifactId>-->
96+
<!-- </dependency>-->
97+
98+
<!-- <dependency>-->
99+
<!-- <groupId>org.springframework.boot</groupId>-->
100+
<!-- <artifactId>spring-boot-devtools</artifactId>-->
101+
<!-- <scope>runtime</scope>-->
102+
<!-- <optional>true</optional>-->
103+
<!-- </dependency>-->
104+
<!-- <dependency>-->
105+
<!-- <groupId>org.projectlombok</groupId>-->
106+
<!-- <artifactId>lombok</artifactId>-->
107+
<!-- <optional>true</optional>-->
108+
<!-- </dependency>-->
109+
<!-- <dependency>-->
110+
<!-- <groupId>org.springframework.boot</groupId>-->
111+
<!-- <artifactId>spring-boot-starter-test</artifactId>-->
112+
<!-- <scope>test</scope>-->
113+
<!-- </dependency>-->
114+
<!-- <dependency>-->
115+
<!-- <groupId>org.hibernate</groupId>-->
116+
<!-- <artifactId>hibernate-core</artifactId>-->
117+
<!-- </dependency>-->
118+
<!-- <dependency>-->
119+
<!-- <groupId>com.graphql-java</groupId>-->
120+
<!-- <artifactId>graphql-spring-boot-autoconfigure</artifactId>-->
121+
<!-- <version>5.0.2</version>-->
122+
<!-- </dependency>-->
123+
<!-- <dependency>-->
124+
<!-- <groupId>com.graphql-java</groupId>-->
125+
<!-- <artifactId>graphql-java-servlet</artifactId>-->
126+
<!-- <version>6.1.3</version>-->
127+
<!-- </dependency>-->
128+
129+
130+
<!-- <dependency>-->
131+
<!-- <groupId>io.github.cdimascio</groupId>-->
132+
<!-- <artifactId>java-dotenv</artifactId>-->
133+
<!-- <version>5.2.2</version>-->
134+
<!-- </dependency>-->
135+
136+
<!-- &lt;!&ndash; <dependency>&ndash;&gt;-->
137+
<!-- &lt;!&ndash; <groupId>org.springframework</groupId>&ndash;&gt;-->
138+
<!-- &lt;!&ndash; <artifactId>spring-context</artifactId>&ndash;&gt;-->
139+
<!-- &lt;!&ndash; <version>5.2.2.RELEASE</version>&ndash;&gt;-->
140+
<!-- &lt;!&ndash; </dependency>&ndash;&gt;-->
141+
142+
<!-- &lt;!&ndash; <dependency>&ndash;&gt;-->
143+
<!-- &lt;!&ndash; <groupId>org.springframework</groupId>&ndash;&gt;-->
144+
<!-- &lt;!&ndash; <artifactId>spring-web</artifactId>&ndash;&gt;-->
145+
<!-- &lt;!&ndash; <version>5.2.2.RELEASE</version>&ndash;&gt;-->
146+
<!-- &lt;!&ndash; </dependency>&ndash;&gt;-->
147+
148+
<!-- </dependencies>-->
149+
150+
<!-- <build>-->
151+
<!-- <plugins>-->
152+
<!-- <plugin>-->
153+
<!-- <groupId>org.springframework.boot</groupId>-->
154+
<!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
155+
<!-- <configuration>-->
156+
<!-- <excludes>-->
157+
<!-- <exclude>-->
158+
<!-- <groupId>org.projectlombok</groupId>-->
159+
<!-- <artifactId>lombok</artifactId>-->
160+
<!-- </exclude>-->
161+
<!-- </excludes>-->
162+
<!-- </configuration>-->
163+
<!-- </plugin>-->
164+
<!-- </plugins>-->
165+
<!-- </build>-->
166+
116167
</project>

0 commit comments

Comments
 (0)