Commit 9ef2166b by Zahid Hassan

dependency updated

parent 0dee90be
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.17</version> <version>2.7.18</version>
<relativePath/> <!-- lookup parent from repository --> <relativePath/> <!-- lookup parent from repository -->
</parent> </parent>
<groupId>bd.gov</groupId> <groupId>bd.gov</groupId>
...@@ -25,33 +25,17 @@ ...@@ -25,33 +25,17 @@
<dependency> <dependency>
<groupId>org.springdoc</groupId> <groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-ui</artifactId> <artifactId>springdoc-openapi-ui</artifactId>
<version>1.6.15</version> <version>1.7.0</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.nimbusds</groupId> <groupId>com.nimbusds</groupId>
<artifactId>nimbus-jose-jwt</artifactId> <artifactId>nimbus-jose-jwt</artifactId>
<version>9.30.2</version> <version>9.37.1</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>
<finalName>ekpayencryption</finalName> <finalName>ekpayencryption</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build> </build>
</project> </project>
package bd.gov.ekpayencryption.controller; package bd.gov.ekpayencryption.controller;
import bd.gov.ekpayencryption.dto.ResponseDto;
import bd.gov.ekpayencryption.dto.ResponseStatusEnum;
import bd.gov.ekpayencryption.service.EncryptionDecryptionService; import bd.gov.ekpayencryption.service.EncryptionDecryptionService;
import org.springframework.http.ResponseEntity; import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PostMapping;
......
package bd.gov.ekpayencryption.dto;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Builder
@AllArgsConstructor
@NoArgsConstructor
@Data
public class ResponseDto {
private ResponseStatusEnum status;
private String data;
}
package bd.gov.ekpayencryption.dto;
public enum ResponseStatusEnum {
SUCCESS, FAILED
}
package bd.gov.ekpayencryption;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class EkpayencryptionApplicationTests {
@Test
void contextLoads() {
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment