Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Main #38

Open
wants to merge 37 commits into
base: master
Choose a base branch
from
Open

Main #38

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
c9607ef
Create config.yml
thaadur Jun 22, 2023
4b40c4a
Update config.yml
thaadur Jun 22, 2023
a16f976
Update config.yml
thaadur Jun 22, 2023
9d2e502
Update config.yml
thaadur Jun 22, 2023
8b51212
Update config.yml
thaadur Jun 22, 2023
e41d77c
Update config.yml
thaadur Jun 22, 2023
03c7925
Update config.yml
thaadur Jun 22, 2023
e8d1124
Update config.yml
thaadur Jun 22, 2023
cd5de19
Update config.yml
thaadur Jun 22, 2023
5f8adaf
Update config.yml
thaadur Jun 22, 2023
72083ec
Update config.yml
thaadur Jun 22, 2023
09bc729
Update config.yml
thaadur Jun 22, 2023
555ced0
Update config.yml
thaadur Jun 22, 2023
82de001
Update config.yml
thaadur Jun 22, 2023
90f56a8
Update config.yml
thaadur Jun 22, 2023
11f3b91
Update config.yml
thaadur Jun 22, 2023
d408f98
Update config.yml
thaadur Jun 22, 2023
896c719
Update config.yml
thaadur Jun 22, 2023
2d7a7ce
Update config.yml
thaadur Jun 22, 2023
5ced00f
Update config.yml
thaadur Jun 22, 2023
cbcd8d5
Update config.yml
thaadur Jun 22, 2023
344efbd
Update config.yml
thaadur Jun 22, 2023
d6de817
Update config.yml
thaadur Jun 22, 2023
8d853f1
Update config.yml
thaadur Jun 22, 2023
430333d
Update config.yml
thaadur Jun 22, 2023
b542190
Update config.yml
thaadur Jun 22, 2023
a1b45ca
Update config.yml
thaadur Jun 22, 2023
6ad6d1a
Update config.yml
thaadur Jun 22, 2023
bc1d848
Update config.yml
thaadur Jun 22, 2023
058580d
Update config.yml
thaadur Jun 22, 2023
35347f2
Update config.yml
thaadur Jun 22, 2023
a1f84e5
Update config.yml
thaadur Jun 22, 2023
94e80d1
Update config.yml
thaadur Jun 22, 2023
7cf6e0f
Update pom.xml
thaadur Jul 19, 2023
829f529
Update pom.xml
thaadur Jul 19, 2023
135f88d
Update pom.xml
thaadur Jul 19, 2023
0c7bbaf
Update pom.xml
thaadur Aug 1, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
version: 2.1
orbs:
maven: circleci/[email protected]
snyk: snyk/[email protected]
workflows:
snyk With Maven:
jobs:
- Build_Maven
- Snyk_SCA:
requires:
- Build_Maven
- Snyk_Code:
requires:
- Snyk_SCA
jobs:
Build_Maven:
docker:
- image: circleci/openjdk:8-jdk

steps:
- checkout
- run: mvn clean install
Snyk_SCA:
docker:
- image: cimg/node:lts
steps:
- checkout
- snyk/install
- run:
command: |
snyk test

Snyk_Code:
docker:
- image: cimg/node:lts
steps:
- checkout
- snyk/install
- run:
command: snyk code test

2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<properties>
<struts2.version>2.3.30</struts2.version>
<log4j2.version>2.3</log4j2.version>
<log4j2.version>2.16.0</log4j2.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spring.version>3.0.5.RELEASE</spring.version>
</properties>
Expand Down