Skip to content

Commit

Permalink
Injiver 722 server side verification (#232)
Browse files Browse the repository at this point in the history
* [INJIVER-722] - add api for server side verification and integrate with ui

Signed-off-by: Sreenadh S <[email protected]>

* [INJIVER-722] - update vc status condition and api route

Signed-off-by: Sreenadh S <[email protected]>

* [INJIVER-722] - update rout config

Signed-off-by: Sreenadh S <[email protected]>

* [INJIVER-722] - add health actuator

Signed-off-by: Sreenadh S <[email protected]>

---------

Signed-off-by: Sreenadh S <[email protected]>
  • Loading branch information
sree96 authored Nov 12, 2024
1 parent 807ba35 commit dee1fc5
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
16 changes: 15 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -108,12 +108,22 @@
<module>verify-service</module>
</modules>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Hoxton.SR8</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
Expand All @@ -139,6 +149,10 @@
<artifactId>vcverifier-jar</artifactId>
<version>1.1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
</dependencies>

<build>
Expand Down
3 changes: 1 addition & 2 deletions verify-service/src/main/resources/application.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
spring.application.name=verify-service
#spring.mvc.servlet.path=/v1/verify
server.servlet.context-path=/v1/verify
server.servlet.context-path=/v1/verify

0 comments on commit dee1fc5

Please sign in to comment.