├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ └── jenkins-security-scan.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Jenkinsfile ├── LICENSE ├── README.md ├── pom.xml ├── scripts ├── codenarc_rules.txt ├── run_code_narc.sh └── run_java_formatter.sh ├── src ├── main │ ├── java │ │ └── com │ │ │ └── axis │ │ │ └── system │ │ │ └── jenkins │ │ │ └── plugins │ │ │ └── downstream │ │ │ ├── tree │ │ │ ├── Matrix.java │ │ │ └── TreeLaminator.java │ │ │ └── yabv │ │ │ ├── BuildFlowAction.java │ │ │ ├── BuildFlowOptions.java │ │ │ └── NameNormalizer.java │ ├── resources │ │ ├── com │ │ │ └── axis │ │ │ │ └── system │ │ │ │ └── jenkins │ │ │ │ └── plugins │ │ │ │ └── downstream │ │ │ │ └── yabv │ │ │ │ └── BuildFlowAction │ │ │ │ ├── buildFlow.groovy │ │ │ │ ├── buildFlowJsCss.groovy │ │ │ │ ├── index.groovy │ │ │ │ ├── jobMain.groovy │ │ │ │ └── summary.groovy │ │ └── index.jelly │ └── webapp │ │ ├── css │ │ └── layout.css │ │ ├── icons │ │ └── summary-icon.png │ │ ├── images │ │ └── in_progress.gif │ │ └── scripts │ │ └── render.js └── test │ └── groovy │ └── com │ └── axis │ └── system │ └── jenkins │ └── plugins │ └── downstream │ ├── tree │ └── TreeLaminatorTest.groovy │ └── yabv │ └── NameNormalizerTest.groovy └── static ├── yabv.png └── yabv_toggles.png /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @jenkinsci/yet-another-build-visualizer-plugin-developers 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/yet-another-build-visualizer-plugin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/jenkins-security-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/yet-another-build-visualizer-plugin/HEAD/.github/workflows/jenkins-security-scan.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/yet-another-build-visualizer-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/yet-another-build-visualizer-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/yet-another-build-visualizer-plugin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- 1 | buildPlugin() 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/yet-another-build-visualizer-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/yet-another-build-visualizer-plugin/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/yet-another-build-visualizer-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /scripts/codenarc_rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/yet-another-build-visualizer-plugin/HEAD/scripts/codenarc_rules.txt -------------------------------------------------------------------------------- /scripts/run_code_narc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/yet-another-build-visualizer-plugin/HEAD/scripts/run_code_narc.sh -------------------------------------------------------------------------------- /scripts/run_java_formatter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/yet-another-build-visualizer-plugin/HEAD/scripts/run_java_formatter.sh -------------------------------------------------------------------------------- /src/main/java/com/axis/system/jenkins/plugins/downstream/tree/Matrix.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/yet-another-build-visualizer-plugin/HEAD/src/main/java/com/axis/system/jenkins/plugins/downstream/tree/Matrix.java -------------------------------------------------------------------------------- /src/main/java/com/axis/system/jenkins/plugins/downstream/tree/TreeLaminator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/yet-another-build-visualizer-plugin/HEAD/src/main/java/com/axis/system/jenkins/plugins/downstream/tree/TreeLaminator.java -------------------------------------------------------------------------------- /src/main/java/com/axis/system/jenkins/plugins/downstream/yabv/BuildFlowAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/yet-another-build-visualizer-plugin/HEAD/src/main/java/com/axis/system/jenkins/plugins/downstream/yabv/BuildFlowAction.java -------------------------------------------------------------------------------- /src/main/java/com/axis/system/jenkins/plugins/downstream/yabv/BuildFlowOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/yet-another-build-visualizer-plugin/HEAD/src/main/java/com/axis/system/jenkins/plugins/downstream/yabv/BuildFlowOptions.java -------------------------------------------------------------------------------- /src/main/java/com/axis/system/jenkins/plugins/downstream/yabv/NameNormalizer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/yet-another-build-visualizer-plugin/HEAD/src/main/java/com/axis/system/jenkins/plugins/downstream/yabv/NameNormalizer.java -------------------------------------------------------------------------------- /src/main/resources/com/axis/system/jenkins/plugins/downstream/yabv/BuildFlowAction/buildFlow.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/yet-another-build-visualizer-plugin/HEAD/src/main/resources/com/axis/system/jenkins/plugins/downstream/yabv/BuildFlowAction/buildFlow.groovy -------------------------------------------------------------------------------- /src/main/resources/com/axis/system/jenkins/plugins/downstream/yabv/BuildFlowAction/buildFlowJsCss.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/yet-another-build-visualizer-plugin/HEAD/src/main/resources/com/axis/system/jenkins/plugins/downstream/yabv/BuildFlowAction/buildFlowJsCss.groovy -------------------------------------------------------------------------------- /src/main/resources/com/axis/system/jenkins/plugins/downstream/yabv/BuildFlowAction/index.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/yet-another-build-visualizer-plugin/HEAD/src/main/resources/com/axis/system/jenkins/plugins/downstream/yabv/BuildFlowAction/index.groovy -------------------------------------------------------------------------------- /src/main/resources/com/axis/system/jenkins/plugins/downstream/yabv/BuildFlowAction/jobMain.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/yet-another-build-visualizer-plugin/HEAD/src/main/resources/com/axis/system/jenkins/plugins/downstream/yabv/BuildFlowAction/jobMain.groovy -------------------------------------------------------------------------------- /src/main/resources/com/axis/system/jenkins/plugins/downstream/yabv/BuildFlowAction/summary.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/yet-another-build-visualizer-plugin/HEAD/src/main/resources/com/axis/system/jenkins/plugins/downstream/yabv/BuildFlowAction/summary.groovy -------------------------------------------------------------------------------- /src/main/resources/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/yet-another-build-visualizer-plugin/HEAD/src/main/resources/index.jelly -------------------------------------------------------------------------------- /src/main/webapp/css/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/yet-another-build-visualizer-plugin/HEAD/src/main/webapp/css/layout.css -------------------------------------------------------------------------------- /src/main/webapp/icons/summary-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/yet-another-build-visualizer-plugin/HEAD/src/main/webapp/icons/summary-icon.png -------------------------------------------------------------------------------- /src/main/webapp/images/in_progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/yet-another-build-visualizer-plugin/HEAD/src/main/webapp/images/in_progress.gif -------------------------------------------------------------------------------- /src/main/webapp/scripts/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/yet-another-build-visualizer-plugin/HEAD/src/main/webapp/scripts/render.js -------------------------------------------------------------------------------- /src/test/groovy/com/axis/system/jenkins/plugins/downstream/tree/TreeLaminatorTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/yet-another-build-visualizer-plugin/HEAD/src/test/groovy/com/axis/system/jenkins/plugins/downstream/tree/TreeLaminatorTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/axis/system/jenkins/plugins/downstream/yabv/NameNormalizerTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/yet-another-build-visualizer-plugin/HEAD/src/test/groovy/com/axis/system/jenkins/plugins/downstream/yabv/NameNormalizerTest.groovy -------------------------------------------------------------------------------- /static/yabv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/yet-another-build-visualizer-plugin/HEAD/static/yabv.png -------------------------------------------------------------------------------- /static/yabv_toggles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/yet-another-build-visualizer-plugin/HEAD/static/yabv_toggles.png --------------------------------------------------------------------------------