Compare commits

...

2 commits

Author SHA1 Message Date
hirst e69d0248af Merge pull request 'removed security from microservice' (#12) from worky into dev
All checks were successful
build and publish docker image / deploy / build (push) Successful in 3m5s
Reviewed-on: #12
Reviewed-by: Seiwy <bmate20050911@gmail.com>
Reviewed-by: 2005 <4o1x5@4o1x5.dev>
2024-06-05 08:25:06 +02:00
hirst 1583c36e00 removed security
All checks were successful
build and publish docker image / deploy / build (pull_request) Successful in 3m37s
2024-06-05 08:16:59 +02:00

View file

@ -36,27 +36,6 @@
<artifactId>spring-cloud-config-server</artifactId> <artifactId>spring-cloud-config-server</artifactId>
</dependency> </dependency>
<!-- https://mvnrepository.com/artifact/org.springframework.security.oauth/spring-security-oauth2 -->
<dependency>
<groupId>org.springframework.security.oauth</groupId>
<artifactId>spring-security-oauth2</artifactId>
<version>2.5.2.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-oauth2-resource-server</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-oauth2-resource-server</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency> <dependency>
<groupId>org.springdoc</groupId> <groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId> <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
@ -69,12 +48,6 @@
<scope>runtime</scope> <scope>runtime</scope>
</dependency> </dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies> </dependencies>
</project> </project>