├── .gitignore ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── .travis.yml ├── LICENSE ├── README.md ├── docs ├── Branch-Details.png ├── Build-Details.png ├── Configure.png ├── New-Item.png ├── Project-Details.png ├── Scan.png └── Status.png ├── mvnw ├── mvnw.cmd ├── pom.xml ├── src ├── main │ ├── images │ │ ├── icon-branch.svg │ │ ├── icon-commit.svg │ │ ├── icon-fork.svg │ │ ├── icon-gitlab.svg │ │ ├── icon-merge-request.svg │ │ ├── icon-project.svg │ │ └── icon-tag.svg │ ├── java │ │ └── argelbargel │ │ │ └── jenkins │ │ │ └── plugins │ │ │ └── gitlab_branch_source │ │ │ ├── DefaultProjectQuery.java │ │ │ ├── GitLabHelper.java │ │ │ ├── GitLabSCMBranchBuildStrategy.java │ │ │ ├── GitLabSCMHeadCategory.java │ │ │ ├── GitLabSCMIcons.java │ │ │ ├── GitLabSCMItemListener.java │ │ │ ├── GitLabSCMNavigator.java │ │ │ ├── GitLabSCMProbe.java │ │ │ ├── GitLabSCMRunListener.java │ │ │ ├── GitLabSCMSource.java │ │ │ ├── GroupProjectQuery.java │ │ │ ├── ProjectQuery.java │ │ │ ├── SourceActions.java │ │ │ ├── SourceHeads.java │ │ │ ├── SourceVisitor.java │ │ │ ├── actions │ │ │ ├── GitLabLinkAction.java │ │ │ ├── GitLabProjectAvatarMetadataAction.java │ │ │ ├── GitLabSCMAcceptMergeRequestAction.java │ │ │ ├── GitLabSCMBuildStatusPublisher.java │ │ │ ├── GitLabSCMCauseAction.java │ │ │ ├── GitLabSCMHeadMetadataAction.java │ │ │ └── GitLabSCMPublishAction.java │ │ │ ├── api │ │ │ ├── GitLabAPI.java │ │ │ ├── GitLabAPIException.java │ │ │ ├── GitLabGroup.java │ │ │ ├── GitLabHookEventType.java │ │ │ ├── GitLabMergeRequest.java │ │ │ ├── GitLabProject.java │ │ │ ├── GitLabProjectSelector.java │ │ │ ├── GitLabProjectVisibility.java │ │ │ ├── GitLabVersion.java │ │ │ ├── Hooks │ │ │ │ ├── MergeRequestHook.java │ │ │ │ ├── MergeRequestObjectAttributes.java │ │ │ │ └── WebHook.java │ │ │ ├── SystemHook.java │ │ │ └── filters │ │ │ │ ├── AllowMergeRequestsFromForks.java │ │ │ │ ├── AllowMergeRequestsFromOrigin.java │ │ │ │ ├── FilterWorkInProgress.java │ │ │ │ └── GitLabMergeRequestFilter.java │ │ │ ├── events │ │ │ ├── CauseDataHelper.java │ │ │ ├── EventHelper.java │ │ │ ├── GitLabSCMEvent.java │ │ │ ├── GitLabSCMHeadEvent.java │ │ │ ├── GitLabSCMMergeRequestEvent.java │ │ │ ├── GitLabSCMPushEvent.java │ │ │ ├── GitLabSCMSourceEvent.java │ │ │ └── GitLabSCMTagPushEvent.java │ │ │ ├── heads │ │ │ ├── GitLabSCMBranchHead.java │ │ │ ├── GitLabSCMHead.java │ │ │ ├── GitLabSCMHeadImpl.java │ │ │ ├── GitLabSCMMergeRequestHead.java │ │ │ ├── GitLabSCMRefSpec.java │ │ │ └── GitLabSCMTagHead.java │ │ │ ├── hooks │ │ │ ├── GitLabSCMWebHook.java │ │ │ ├── GitLabSCMWebHookCrumbExclusion.java │ │ │ ├── GitLabSCMWebHookItemListener.java │ │ │ ├── GitLabSCMWebHookListener.java │ │ │ ├── HookHandler.java │ │ │ └── HookManager.java │ │ │ ├── settings │ │ │ ├── BuildStatusPublishMode.java │ │ │ ├── GitLabSCMBranchMonitorStrategy.java │ │ │ ├── GitLabSCMForksMonitorStrategy.java │ │ │ ├── GitLabSCMOriginMonitorStrategy.java │ │ │ ├── GitLabSCMSourceSettings.java │ │ │ ├── GitLabSCMTagMonitorStrategy.java │ │ │ ├── MergeRequestMonitorStrategy.java │ │ │ ├── MonitorStrategy.java │ │ │ └── SettingsUtils.java │ │ │ └── views │ │ │ ├── GitLabBranchFilter.java │ │ │ ├── GitLabMergeRequestFilter.java │ │ │ └── GitLabTagFilter.java │ └── resources │ │ ├── META-INF │ │ └── hudson.remoting.ClassFilter │ │ ├── argelbargel │ │ └── jenkins │ │ │ └── plugins │ │ │ └── gitlab_branch_source │ │ │ ├── GitLabSCMNavigator │ │ │ ├── config.jelly │ │ │ ├── help-projectGroup.html │ │ │ ├── help-projectSearchPattern.html │ │ │ ├── help-projectSelectorId.html │ │ │ └── help-projectVisibilityId.html │ │ │ ├── GitLabSCMSource │ │ │ ├── config.jelly │ │ │ └── help-registerWebHooks.html │ │ │ ├── Messages.properties │ │ │ ├── settings │ │ │ ├── GitLabSCMBranchMonitorStrategy │ │ │ │ ├── config.jelly │ │ │ │ └── help-buildStatusPublishMode.html │ │ │ ├── GitLabSCMForksMonitorStrategy │ │ │ │ ├── config.jelly │ │ │ │ ├── help-acceptMergeRequests.html │ │ │ │ ├── help-buildMerged.html │ │ │ │ ├── help-buildOnlyMergeableMerged.html │ │ │ │ ├── help-buildStatusPublishMode.html │ │ │ │ ├── help-buildUnmerged.html │ │ │ │ └── help-ignoreWorkInProgress.html │ │ │ ├── GitLabSCMOriginMonitorStrategy │ │ │ │ ├── config.jelly │ │ │ │ ├── help-acceptMergeRequests.html │ │ │ │ ├── help-buildMerged.html │ │ │ │ ├── help-buildOnlyMergeableMerged.html │ │ │ │ ├── help-buildStatusPublishMode.html │ │ │ │ ├── help-buildUnmerged.html │ │ │ │ ├── help-ignoreWorkInProgress.html │ │ │ │ └── help-removeSourceBranch.html │ │ │ ├── GitLabSCMSourceSettings │ │ │ │ ├── config.jelly │ │ │ │ ├── help-buildBranchesWithMergeRequests.html │ │ │ │ ├── help-checkoutCredentialsId.html │ │ │ │ ├── help-excludes.html │ │ │ │ ├── help-includes.html │ │ │ │ ├── help-monitorAndBuildBranches.html │ │ │ │ ├── help-monitorAndBuildMergeRequestsFromForks.html │ │ │ │ ├── help-monitorAndBuildMergeRequestsFromOrigin.html │ │ │ │ ├── help-monitorTags.html │ │ │ │ ├── help-publisherName.html │ │ │ │ └── help-updateBuildDescription.html │ │ │ └── GitLabSCMTagMonitorStrategy │ │ │ │ ├── config.jelly │ │ │ │ └── help-buildStatusPublishMode.html │ │ │ └── views │ │ │ ├── GitLabBranchFilter │ │ │ └── config.jelly │ │ │ └── GitLabMergeRequestFilter │ │ │ └── config.jelly │ │ └── index.jelly └── test │ └── scripts │ ├── create-empty-projects.sh │ └── delete-projects.sh └── travis.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/README.md -------------------------------------------------------------------------------- /docs/Branch-Details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/docs/Branch-Details.png -------------------------------------------------------------------------------- /docs/Build-Details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/docs/Build-Details.png -------------------------------------------------------------------------------- /docs/Configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/docs/Configure.png -------------------------------------------------------------------------------- /docs/New-Item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/docs/New-Item.png -------------------------------------------------------------------------------- /docs/Project-Details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/docs/Project-Details.png -------------------------------------------------------------------------------- /docs/Scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/docs/Scan.png -------------------------------------------------------------------------------- /docs/Status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/docs/Status.png -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/images/icon-branch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/images/icon-branch.svg -------------------------------------------------------------------------------- /src/main/images/icon-commit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/images/icon-commit.svg -------------------------------------------------------------------------------- /src/main/images/icon-fork.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/images/icon-fork.svg -------------------------------------------------------------------------------- /src/main/images/icon-gitlab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/images/icon-gitlab.svg -------------------------------------------------------------------------------- /src/main/images/icon-merge-request.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/images/icon-merge-request.svg -------------------------------------------------------------------------------- /src/main/images/icon-project.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/images/icon-project.svg -------------------------------------------------------------------------------- /src/main/images/icon-tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/images/icon-tag.svg -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/DefaultProjectQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/DefaultProjectQuery.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/GitLabHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/GitLabHelper.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/GitLabSCMBranchBuildStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/GitLabSCMBranchBuildStrategy.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/GitLabSCMHeadCategory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/GitLabSCMHeadCategory.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/GitLabSCMIcons.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/GitLabSCMIcons.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/GitLabSCMItemListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/GitLabSCMItemListener.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/GitLabSCMNavigator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/GitLabSCMNavigator.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/GitLabSCMProbe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/GitLabSCMProbe.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/GitLabSCMRunListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/GitLabSCMRunListener.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/GitLabSCMSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/GitLabSCMSource.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/GroupProjectQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/GroupProjectQuery.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/ProjectQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/ProjectQuery.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/SourceActions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/SourceActions.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/SourceHeads.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/SourceHeads.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/SourceVisitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/SourceVisitor.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/actions/GitLabLinkAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/actions/GitLabLinkAction.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/actions/GitLabProjectAvatarMetadataAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/actions/GitLabProjectAvatarMetadataAction.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/actions/GitLabSCMAcceptMergeRequestAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/actions/GitLabSCMAcceptMergeRequestAction.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/actions/GitLabSCMBuildStatusPublisher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/actions/GitLabSCMBuildStatusPublisher.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/actions/GitLabSCMCauseAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/actions/GitLabSCMCauseAction.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/actions/GitLabSCMHeadMetadataAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/actions/GitLabSCMHeadMetadataAction.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/actions/GitLabSCMPublishAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/actions/GitLabSCMPublishAction.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/GitLabAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/GitLabAPI.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/GitLabAPIException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/GitLabAPIException.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/GitLabGroup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/GitLabGroup.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/GitLabHookEventType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/GitLabHookEventType.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/GitLabMergeRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/GitLabMergeRequest.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/GitLabProject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/GitLabProject.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/GitLabProjectSelector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/GitLabProjectSelector.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/GitLabProjectVisibility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/GitLabProjectVisibility.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/GitLabVersion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/GitLabVersion.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/Hooks/MergeRequestHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/Hooks/MergeRequestHook.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/Hooks/MergeRequestObjectAttributes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/Hooks/MergeRequestObjectAttributes.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/Hooks/WebHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/Hooks/WebHook.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/SystemHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/SystemHook.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/filters/AllowMergeRequestsFromForks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/filters/AllowMergeRequestsFromForks.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/filters/AllowMergeRequestsFromOrigin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/filters/AllowMergeRequestsFromOrigin.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/filters/FilterWorkInProgress.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/filters/FilterWorkInProgress.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/filters/GitLabMergeRequestFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/filters/GitLabMergeRequestFilter.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/events/CauseDataHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/events/CauseDataHelper.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/events/EventHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/events/EventHelper.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/events/GitLabSCMEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/events/GitLabSCMEvent.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/events/GitLabSCMHeadEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/events/GitLabSCMHeadEvent.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/events/GitLabSCMMergeRequestEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/events/GitLabSCMMergeRequestEvent.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/events/GitLabSCMPushEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/events/GitLabSCMPushEvent.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/events/GitLabSCMSourceEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/events/GitLabSCMSourceEvent.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/events/GitLabSCMTagPushEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/events/GitLabSCMTagPushEvent.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/heads/GitLabSCMBranchHead.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/heads/GitLabSCMBranchHead.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/heads/GitLabSCMHead.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/heads/GitLabSCMHead.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/heads/GitLabSCMHeadImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/heads/GitLabSCMHeadImpl.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/heads/GitLabSCMMergeRequestHead.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/heads/GitLabSCMMergeRequestHead.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/heads/GitLabSCMRefSpec.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/heads/GitLabSCMRefSpec.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/heads/GitLabSCMTagHead.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/heads/GitLabSCMTagHead.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/hooks/GitLabSCMWebHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/hooks/GitLabSCMWebHook.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/hooks/GitLabSCMWebHookCrumbExclusion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/hooks/GitLabSCMWebHookCrumbExclusion.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/hooks/GitLabSCMWebHookItemListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/hooks/GitLabSCMWebHookItemListener.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/hooks/GitLabSCMWebHookListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/hooks/GitLabSCMWebHookListener.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/hooks/HookHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/hooks/HookHandler.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/hooks/HookManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/hooks/HookManager.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/settings/BuildStatusPublishMode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/settings/BuildStatusPublishMode.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMBranchMonitorStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMBranchMonitorStrategy.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMForksMonitorStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMForksMonitorStrategy.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMOriginMonitorStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMOriginMonitorStrategy.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMSourceSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMSourceSettings.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMTagMonitorStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMTagMonitorStrategy.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/settings/MergeRequestMonitorStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/settings/MergeRequestMonitorStrategy.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/settings/MonitorStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/settings/MonitorStrategy.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/settings/SettingsUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/settings/SettingsUtils.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/views/GitLabBranchFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/views/GitLabBranchFilter.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/views/GitLabMergeRequestFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/views/GitLabMergeRequestFilter.java -------------------------------------------------------------------------------- /src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/views/GitLabTagFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/views/GitLabTagFilter.java -------------------------------------------------------------------------------- /src/main/resources/META-INF/hudson.remoting.ClassFilter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/META-INF/hudson.remoting.ClassFilter -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/GitLabSCMNavigator/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/GitLabSCMNavigator/config.jelly -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/GitLabSCMNavigator/help-projectGroup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/GitLabSCMNavigator/help-projectGroup.html -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/GitLabSCMNavigator/help-projectSearchPattern.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/GitLabSCMNavigator/help-projectSearchPattern.html -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/GitLabSCMNavigator/help-projectSelectorId.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/GitLabSCMNavigator/help-projectSelectorId.html -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/GitLabSCMNavigator/help-projectVisibilityId.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/GitLabSCMNavigator/help-projectVisibilityId.html -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/GitLabSCMSource/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/GitLabSCMSource/config.jelly -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/GitLabSCMSource/help-registerWebHooks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/GitLabSCMSource/help-registerWebHooks.html -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/Messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/Messages.properties -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMBranchMonitorStrategy/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMBranchMonitorStrategy/config.jelly -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMBranchMonitorStrategy/help-buildStatusPublishMode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMBranchMonitorStrategy/help-buildStatusPublishMode.html -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMForksMonitorStrategy/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMForksMonitorStrategy/config.jelly -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMForksMonitorStrategy/help-acceptMergeRequests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMForksMonitorStrategy/help-acceptMergeRequests.html -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMForksMonitorStrategy/help-buildMerged.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMForksMonitorStrategy/help-buildMerged.html -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMForksMonitorStrategy/help-buildOnlyMergeableMerged.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMForksMonitorStrategy/help-buildOnlyMergeableMerged.html -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMForksMonitorStrategy/help-buildStatusPublishMode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMForksMonitorStrategy/help-buildStatusPublishMode.html -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMForksMonitorStrategy/help-buildUnmerged.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMForksMonitorStrategy/help-buildUnmerged.html -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMForksMonitorStrategy/help-ignoreWorkInProgress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMForksMonitorStrategy/help-ignoreWorkInProgress.html -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMOriginMonitorStrategy/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMOriginMonitorStrategy/config.jelly -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMOriginMonitorStrategy/help-acceptMergeRequests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMOriginMonitorStrategy/help-acceptMergeRequests.html -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMOriginMonitorStrategy/help-buildMerged.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMOriginMonitorStrategy/help-buildMerged.html -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMOriginMonitorStrategy/help-buildOnlyMergeableMerged.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMOriginMonitorStrategy/help-buildOnlyMergeableMerged.html -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMOriginMonitorStrategy/help-buildStatusPublishMode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMOriginMonitorStrategy/help-buildStatusPublishMode.html -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMOriginMonitorStrategy/help-buildUnmerged.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMOriginMonitorStrategy/help-buildUnmerged.html -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMOriginMonitorStrategy/help-ignoreWorkInProgress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMOriginMonitorStrategy/help-ignoreWorkInProgress.html -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMOriginMonitorStrategy/help-removeSourceBranch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMOriginMonitorStrategy/help-removeSourceBranch.html -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMSourceSettings/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMSourceSettings/config.jelly -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMSourceSettings/help-buildBranchesWithMergeRequests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMSourceSettings/help-buildBranchesWithMergeRequests.html -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMSourceSettings/help-checkoutCredentialsId.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMSourceSettings/help-checkoutCredentialsId.html -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMSourceSettings/help-excludes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMSourceSettings/help-excludes.html -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMSourceSettings/help-includes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMSourceSettings/help-includes.html -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMSourceSettings/help-monitorAndBuildBranches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMSourceSettings/help-monitorAndBuildBranches.html -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMSourceSettings/help-monitorAndBuildMergeRequestsFromForks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMSourceSettings/help-monitorAndBuildMergeRequestsFromForks.html -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMSourceSettings/help-monitorAndBuildMergeRequestsFromOrigin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMSourceSettings/help-monitorAndBuildMergeRequestsFromOrigin.html -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMSourceSettings/help-monitorTags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMSourceSettings/help-monitorTags.html -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMSourceSettings/help-publisherName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMSourceSettings/help-publisherName.html -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMSourceSettings/help-updateBuildDescription.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMSourceSettings/help-updateBuildDescription.html -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMTagMonitorStrategy/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMTagMonitorStrategy/config.jelly -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMTagMonitorStrategy/help-buildStatusPublishMode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/settings/GitLabSCMTagMonitorStrategy/help-buildStatusPublishMode.html -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/views/GitLabBranchFilter/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/views/GitLabBranchFilter/config.jelly -------------------------------------------------------------------------------- /src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/views/GitLabMergeRequestFilter/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/views/GitLabMergeRequestFilter/config.jelly -------------------------------------------------------------------------------- /src/main/resources/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/main/resources/index.jelly -------------------------------------------------------------------------------- /src/test/scripts/create-empty-projects.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/test/scripts/create-empty-projects.sh -------------------------------------------------------------------------------- /src/test/scripts/delete-projects.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/src/test/scripts/delete-projects.sh -------------------------------------------------------------------------------- /travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argelbargel/gitlab-branch-source-plugin/HEAD/travis.sh --------------------------------------------------------------------------------