Skip to content

Commit e52cbe8

Browse files
author
Dave Wichers
committed
Apply spotless to all non-testcase code/files. Add spotless to pom.
Add spotless check to workflow.
1 parent 1b7a3a5 commit e52cbe8

File tree

106 files changed

+13776
-12788
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+13776
-12788
lines changed

.github/workflows/maven.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Java CI with Maven
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v2
12+
- name: Set up JDK 1.8
13+
uses: actions/setup-java@v1
14+
with:
15+
java-version: 1.8
16+
- name: Run spotless check
17+
run: mvn spotless:check

DevStyleXml.prefs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
eclipse.preferences.version=1
2+
indentationChar=space
3+
indentationSize=4
4+
lineWidth=999
5+
formatCommentJoinLines=false

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@ The OWASP Benchmark Project is a Java test suite designed to verify the speed an
44
The project documentation is all on the OWASP site at the <a href="https://owasp.org/www-project-benchmark">OWASP Benchmark</a> project pages. Please refer to that site for all the project details.
55

66
The current latest release is v1.2. Note that all the releases that are available here: https://github.com/OWASP/Benchmark/releases, are historical. The latest release is always available live by simply cloning or pulling the head of this repository (i.e., git pull).
7-

0 commit comments

Comments
 (0)