Skip to content
This repository has been archived by the owner on Oct 11, 2022. It is now read-only.

Commit

Permalink
Switch from spring-boot-starter-webflux to spring-boot-starter-web (#4)
Browse files Browse the repository at this point in the history
* Switch from spring-boot-starter-webflux to spring-boot-starter-web

* Upadate dependencies, enable grype scan on PR
  • Loading branch information
trisberg authored Mar 27, 2022
1 parent 4c32447 commit 457e9ca
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/code-scan.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: "Scan"

on:
push:
branches: [ main ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ main ]
schedule:
- cron: '30 4 * * *'
workflow_dispatch:
Expand Down
5 changes: 3 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.6.4</version>
<version>2.6.5</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
Expand All @@ -18,6 +18,7 @@
<java.version>11</java.version>
<spring-cloud.version>2021.0.1</spring-cloud.version>
<spring-native.version>0.11.3</spring-native.version>
<jackson-bom.version>2.13.2.20220324</jackson-bom.version>
</properties>

<licenses>
Expand All @@ -34,7 +35,7 @@
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-webflux</artifactId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
Expand Down

0 comments on commit 457e9ca

Please sign in to comment.