-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2a4251f
commit 2f5a296
Showing
545 changed files
with
3,906 additions
and
2,315 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
gson-utils | ||
zip4jvm | ||
Copyright 2021 Oleg Cherednik ([email protected]) | ||
|
||
This product includes software developed by | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
apply plugin: 'checkstyle' | ||
|
||
checkstyle { | ||
toolVersion = '10.10.0' | ||
configFile = file("${projectDir}/misc/checkstyle/checkstyle.xml") | ||
ignoreFailures = false | ||
maxWarnings = 0 | ||
maxErrors = 0 | ||
} | ||
|
||
checkstyleMain { | ||
enabled = true | ||
source = 'src/main/java' | ||
group = 'static analysis' | ||
exclude 'ru/olegcherednik/zip4jvm/io/bzip2/**' | ||
exclude 'ru/olegcherednik/zip4jvm/io/ed/**' | ||
exclude 'ru/olegcherednik/zip4jvm/io/lzma/**' | ||
} | ||
|
||
checkstyleTest { | ||
enabled = true | ||
source = 'src/test/java' | ||
group = 'static analysis' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
apply plugin: 'pmd' | ||
|
||
pmd { | ||
toolVersion = '7.0.0' | ||
consoleOutput = false | ||
rulesMinimumPriority = 5 | ||
ignoreFailures = false | ||
ruleSets = [ | ||
"${projectDir}/misc/pmd/bestpractices.xml", | ||
"${projectDir}/misc/pmd/codestyle.xml", | ||
"${projectDir}/misc/pmd/design.xml", | ||
"${projectDir}/misc/pmd/errorprone.xml", | ||
"${projectDir}/misc/pmd/multithreading.xml", | ||
"${projectDir}/misc/pmd/performance.xml", | ||
"${projectDir}/misc/pmd/security.xml" | ||
] | ||
} | ||
|
||
pmdMain { | ||
enabled = true | ||
source = 'src/main/java' | ||
group = 'static analysis' | ||
exclude 'ru/olegcherednik/zip4jvm/io/bzip2/**' | ||
exclude 'ru/olegcherednik/zip4jvm/io/ed/**' | ||
exclude 'ru/olegcherednik/zip4jvm/io/lzma/**' | ||
} | ||
|
||
pmdTest { | ||
dependsOn('jar') | ||
enabled = true | ||
source = 'src/test/java' | ||
group = 'static analysis' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# https://projectlombok.org/features/configuration | ||
|
||
# configuration file is in the root of the workspace directory only | ||
config.stopBubbling = true | ||
# If true, lombok will generate a @java.beans.ConstructorProperties annotation when generating constructors. | ||
lombok.anyConstructor.addConstructorProperties=true | ||
# Do not use experimental annotations | ||
lombok.experimental.flagUsage=ERROR | ||
# Lombok marks generated code with @lombok.Generated, so JaCoCo can understand it | ||
lombok.addLombokGeneratedAnnotation = true |
Oops, something went wrong.