Commit 5a133fe4 authored by Alex Segers's avatar Alex Segers

[AFP-91] Install Google API Client for JWT validation & move unit tests (@asegers)

parent 2339acad
...@@ -38,13 +38,6 @@ ...@@ -38,13 +38,6 @@
<version>2.7.0</version> <version>2.7.0</version>
<type>pom</type> <type>pom</type>
</dependency> </dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.20</version>
<scope>provided</scope>
</dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId> <artifactId>spring-boot-starter-test</artifactId>
...@@ -97,6 +90,12 @@ ...@@ -97,6 +90,12 @@
<artifactId>velocity</artifactId> <artifactId>velocity</artifactId>
<version>1.5</version> <version>1.5</version>
</dependency> </dependency>
<!-- https://mvnrepository.com/artifact/com.google.api-client/google-api-client -->
<dependency>
<groupId>com.google.api-client</groupId>
<artifactId>google-api-client</artifactId>
<version>1.31.1</version>
</dependency>
</dependencies> </dependencies>
<build> <build>
<plugins> <plugins>
......
package com.afp.ordermanagement;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
//@SpringBootTest
class OrderManagementApplicationTests {
//@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