You've already forked jenkins-lib
mirror of
https://github.com/firstBitMarksistskaya/jenkins-lib.git
synced 2025-08-25 20:09:25 +02:00
fixes
This commit is contained in:
@@ -35,17 +35,14 @@ val junitVersion = "5.6.1"
|
||||
val spockVersion = "1.3-groovy-2.4"
|
||||
val groovyVersion = "2.4.19"
|
||||
val slf4jVersion = "1.8.0-beta4"
|
||||
var jacksonVersion = "2.9.8"
|
||||
val jsonschemaVersion = "4.36.0"
|
||||
|
||||
dependencies {
|
||||
implementation("org.codehaus.groovy", "groovy-all", groovyVersion)
|
||||
|
||||
// jackson
|
||||
implementation("com.fasterxml.jackson.module", "jackson-module-jsonSchema", jacksonVersion)
|
||||
|
||||
// jsonschema-generator
|
||||
implementation("com.github.victools", "jsonschema-generator", "4.36.0")
|
||||
implementation("com.github.victools", "jsonschema-module-jackson", "4.36.0")
|
||||
implementation("com.github.victools", "jsonschema-generator", jsonschemaVersion)
|
||||
implementation("com.github.victools", "jsonschema-module-jackson", jsonschemaVersion)
|
||||
|
||||
// unit-tests
|
||||
testImplementation("org.junit.jupiter", "junit-jupiter-api", junitVersion)
|
||||
|
@@ -64,13 +64,6 @@ class ResultsTransformer implements Serializable {
|
||||
|
||||
Logger.println("Конвертация результата EDT в Issues с помощью edt-ripper")
|
||||
|
||||
if (config.sourceFormat == SourceFormat.DESIGNER) {
|
||||
|
||||
steps.unstash(DesignerToEdtFormatTransformation.WORKSPACE_ZIP_STASH)
|
||||
steps.unzip(DesignerToEdtFormatTransformation.WORKSPACE, DesignerToEdtFormatTransformation.WORKSPACE_ZIP)
|
||||
|
||||
}
|
||||
|
||||
srcDir = FileUtils.getFilePath("$env.WORKSPACE/$config.srcDir")
|
||||
|
||||
def projectName = srcDir.getName()
|
||||
|
@@ -61,13 +61,6 @@ class SonarScanner implements Serializable {
|
||||
if (config.stageFlags.edtValidate) {
|
||||
steps.unstash(ResultsTransformer.RESULT_STASH)
|
||||
|
||||
if (config.sourceFormat == SourceFormat.DESIGNER) {
|
||||
|
||||
steps.unstash(DesignerToEdtFormatTransformation.WORKSPACE_ZIP_STASH)
|
||||
steps.unzip(DesignerToEdtFormatTransformation.WORKSPACE, DesignerToEdtFormatTransformation.WORKSPACE_ZIP)
|
||||
|
||||
}
|
||||
|
||||
if (config.resultsTransformOptions.transformer == ResultsTransformerType.STEBI) {
|
||||
sonarCommand += " -Dsonar.externalIssuesReportPaths=" + ResultsTransformer.RESULT_FILE
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user