Compare commits
2 commits
6fa52100ec
...
1e62bc3fba
Author | SHA1 | Date | |
---|---|---|---|
1e62bc3fba | |||
32e95b2efa |
3 changed files with 10 additions and 3 deletions
8
cliargs.sh
Executable file
8
cliargs.sh
Executable file
|
@ -0,0 +1,8 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
java -cp "lib/compile/*:examples/lib/bld/*" io.gitlab.arturbosch.detekt.cli.Main --help |\
|
||||||
|
grep "^ --.*" |\
|
||||||
|
sed -e "s/ /\"/" -e "s/, .*//" -e "s/$/\",/" -e '/version/d' -e '/help/d' |\
|
||||||
|
sort |\
|
||||||
|
sed -e '$s/,//'
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
bld.downloadExtensionJavadoc=false
|
bld.downloadExtensionJavadoc=false
|
||||||
bld.downloadExtensionSources=true
|
bld.downloadExtensionSources=true
|
||||||
bld.extensions=com.uwyn.rife2:bld-kotlin:0.9.7
|
bld.extensions=com.uwyn.rife2:bld-kotlin:0.9.8
|
||||||
bld.extension-detekt=com.uwyn.rife2:bld-detekt:0.9.4
|
bld.extension-detekt=com.uwyn.rife2:bld-detekt:0.9.4
|
||||||
bld.repositories=MAVEN_LOCAL,MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
|
bld.repositories=MAVEN_LOCAL,MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
|
||||||
bld.downloadLocation=
|
bld.downloadLocation=
|
||||||
|
|
|
@ -63,8 +63,8 @@ class DetektOperationTest {
|
||||||
var params = List.of(
|
var params = List.of(
|
||||||
"--all-rules",
|
"--all-rules",
|
||||||
"--auto-correct",
|
"--auto-correct",
|
||||||
"--base-path",
|
|
||||||
"--baseline",
|
"--baseline",
|
||||||
|
"--base-path",
|
||||||
"--build-upon-default-config",
|
"--build-upon-default-config",
|
||||||
"--classpath",
|
"--classpath",
|
||||||
"--config",
|
"--config",
|
||||||
|
@ -78,7 +78,6 @@ class DetektOperationTest {
|
||||||
"--input",
|
"--input",
|
||||||
"--jdk-home",
|
"--jdk-home",
|
||||||
"--jvm-target",
|
"--jvm-target",
|
||||||
"--language-version",
|
|
||||||
"--max-issues",
|
"--max-issues",
|
||||||
"--parallel",
|
"--parallel",
|
||||||
"--plugins",
|
"--plugins",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue