Skip to content

Commit 4aa1317

Browse files
Copilotrsenden
andcommitted
Add buildscript configuration and Fortify analysis workflow
Co-authored-by: rsenden <8635138+rsenden@users.noreply.github.com>
1 parent e2fbc07 commit 4aa1317

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Fortify Analysis
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
pull_request:
7+
schedule:
8+
- cron: '16 0 * * 5'
9+
10+
jobs:
11+
fortify:
12+
uses: fortify/.github/.github/workflows/fortify-analysis.yml@main
13+
secrets: inherit

build.gradle

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
buildscript {
2+
configurations.all {
3+
resolutionStrategy.dependencySubstitution {
4+
substitute module("com.overzealous:remark:1.1.0") using module("com.wavefront:remark:2023-07.07") because "not available on maven central anymore"
5+
}
6+
}
7+
}
8+
19
plugins {
210
id "io.freefair.lombok" version "6.4.3"
311
id 'com.github.jk1.dependency-license-report' version '2.1'

0 commit comments

Comments
 (0)