├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md ├── PULL_REQUEST_TEMPLATE.md ├── release.yml └── workflows │ ├── analysis.yml │ ├── cla.yml │ ├── frogbot-scan-and-fix.yml │ ├── frogbot-scan-pr.yml │ ├── monitorIssues.yml │ ├── removeLabel.yml │ └── tests.yml ├── .gitignore ├── LICENSE-2.0.txt ├── README.md ├── pom.xml ├── readme_image.png ├── release ├── pipelines.release.yml ├── pipelines.resources.yml ├── pipelines.snapshot.yml └── specs │ ├── dev-rbc-filespec.json │ └── prod-rbc-filespec.json ├── spotbugs-security-exclude.xml └── src ├── main ├── java │ └── org │ │ └── jfrog │ │ └── hudson │ │ ├── AbstractBuildInfoDeployer.java │ │ ├── AbstractBuildWrapperDescriptor.java │ │ ├── ArtifactoryBuilder.java │ │ ├── ArtifactoryPlugin.java │ │ ├── ArtifactoryRedeployPublisher.java │ │ ├── ArtifactoryServer.java │ │ ├── BuildInfoAwareConfigurator.java │ │ ├── BuildInfoResultAction.java │ │ ├── CredentialsConfig.java │ │ ├── DeployerOverrider.java │ │ ├── JFrogPlatformInstance.java │ │ ├── MavenDependenciesRecord.java │ │ ├── MavenDependency.java │ │ ├── MultiConfigurationAware.java │ │ ├── PluginSettings.java │ │ ├── PublishedBuildDetails.java │ │ ├── Repository.java │ │ ├── RepositoryConf.java │ │ ├── ResolutionRepository.java │ │ ├── ResolverOverrider.java │ │ ├── ServerDetails.java │ │ ├── SpecConfiguration.java │ │ ├── UserPluginInfo.java │ │ ├── UserPluginInfoParam.java │ │ ├── XrayScanResultAction.java │ │ ├── action │ │ ├── ActionableHelper.java │ │ ├── ArtifactoryProjectAction.java │ │ └── JfrogPipelinesAction.java │ │ ├── generic │ │ ├── ArtifactoryGenericConfigurator.java │ │ ├── DependenciesDownloaderImpl.java │ │ ├── EditPropertiesCallable.java │ │ ├── FilesResolverCallable.java │ │ ├── GenericArtifactsDeployer.java │ │ ├── GenericArtifactsResolver.java │ │ └── GenericBuildInfoDeployer.java │ │ ├── gradle │ │ ├── ArtifactoryGradleConfigurator.java │ │ └── GradleInitScriptWriter.java │ │ ├── ivy │ │ ├── ArtifactoryIvyConfigurator.java │ │ ├── ArtifactoryIvyFreeStyleConfigurator.java │ │ └── ArtifactoryIvyRunListener.java │ │ ├── jfpipelines │ │ ├── JFrogPipelinesHttpClient.java │ │ ├── JFrogPipelinesJobInfo.java │ │ ├── JFrogPipelinesParameter.java │ │ ├── JFrogPipelinesServer.java │ │ ├── OutputResource.java │ │ ├── Utils.java │ │ ├── listeners │ │ │ ├── AbstractBuildListener.java │ │ │ └── WorkflowListener.java │ │ └── payloads │ │ │ ├── JobStartedPayload.java │ │ │ ├── JobStatusPayload.java │ │ │ └── VersionPayload.java │ │ ├── maven2 │ │ ├── ArtifactsDeployer.java │ │ ├── MavenBuildInfoDeployer.java │ │ └── MavenDependenciesRecorder.java │ │ ├── maven3 │ │ ├── ArtifactoryMaven3Configurator.java │ │ ├── ArtifactoryMaven3NativeConfigurator.java │ │ ├── Maven3Builder.java │ │ ├── Maven3ExtractorListener.java │ │ ├── MavenVersionCallable.java │ │ └── extractor │ │ │ ├── MavenExtractorEnvironment.java │ │ │ └── MavenExtractorHelper.java │ │ ├── pipeline │ │ ├── ArtifactorySynchronousNonBlockingStepExecution.java │ │ ├── ArtifactorySynchronousStepExecution.java │ │ ├── action │ │ │ ├── DeployedArtifact.java │ │ │ ├── DeployedArtifactsAction.java │ │ │ ├── DeployedGradleArtifactsAction.java │ │ │ └── DeployedMavenArtifactsAction.java │ │ ├── common │ │ │ ├── ArtifactoryConfigurator.java │ │ │ ├── BuildInfoDeployer.java │ │ │ ├── Utils.java │ │ │ ├── executors │ │ │ │ ├── BuildAppendExecutor.java │ │ │ │ ├── BuildInfoProcessRunner.java │ │ │ │ ├── BuildTriggerExecutor.java │ │ │ │ ├── CollectEnvExecutor.java │ │ │ │ ├── CollectIssuesExecutor.java │ │ │ │ ├── ConanExecutor.java │ │ │ │ ├── CreateDockerBuildEnvExtractor.java │ │ │ │ ├── CreateDockerBuildExecutor.java │ │ │ │ ├── DistributionExecutor.java │ │ │ │ ├── DockerEnvExtractor.java │ │ │ │ ├── DockerPullExecutor.java │ │ │ │ ├── DockerPushExecutor.java │ │ │ │ ├── EditPropsExecutor.java │ │ │ │ ├── EnvExtractor.java │ │ │ │ ├── Executor.java │ │ │ │ ├── GenericDownloadExecutor.java │ │ │ │ ├── GenericUploadExecutor.java │ │ │ │ ├── GetJFrogPlatformInstancesExecutor.java │ │ │ │ ├── GoEnvExtractor.java │ │ │ │ ├── GoExecutor.java │ │ │ │ ├── GoPublishExecutor.java │ │ │ │ ├── GoRunExecutor.java │ │ │ │ ├── GradleExecutor.java │ │ │ │ ├── MavenExecutor.java │ │ │ │ ├── MavenGradleEnvExtractor.java │ │ │ │ ├── NpmEnvExtractor.java │ │ │ │ ├── NpmExecutor.java │ │ │ │ ├── NpmInstallCiExecutor.java │ │ │ │ ├── NpmPublishExecutor.java │ │ │ │ ├── NugetEnvExtractor.java │ │ │ │ ├── NugetRunExecutor.java │ │ │ │ ├── PipEnvExtractor.java │ │ │ │ ├── PipInstallExecutor.java │ │ │ │ ├── PromotionExecutor.java │ │ │ │ ├── PublishBuildInfoExecutor.java │ │ │ │ ├── ReleaseBundleCreateExecutor.java │ │ │ │ ├── ReleaseBundleDeleteExecutor.java │ │ │ │ ├── ReleaseBundleDistributeExecutor.java │ │ │ │ ├── ReleaseBundleSignExecutor.java │ │ │ │ ├── ReleaseBundleUpdateExecutor.java │ │ │ │ └── XrayExecutor.java │ │ │ └── types │ │ │ │ ├── ArtifactoryServer.java │ │ │ │ ├── ConanClient.java │ │ │ │ ├── ConanRemote.java │ │ │ │ ├── Connection.java │ │ │ │ ├── DistributionConfig.java │ │ │ │ ├── DistributionServer.java │ │ │ │ ├── Docker.java │ │ │ │ ├── Filter.java │ │ │ │ ├── GradlePublications.java │ │ │ │ ├── JFrogPlatformInstance.java │ │ │ │ ├── MavenDescriptor.java │ │ │ │ ├── PromotionConfig.java │ │ │ │ ├── XrayScanConfig.java │ │ │ │ ├── XrayScanResult.java │ │ │ │ ├── buildInfo │ │ │ │ ├── BuildInfo.java │ │ │ │ ├── BuildRetention.java │ │ │ │ ├── Env.java │ │ │ │ ├── EnvFilter.java │ │ │ │ └── Issues.java │ │ │ │ ├── builds │ │ │ │ ├── GoBuild.java │ │ │ │ ├── GradleBuild.java │ │ │ │ ├── MavenBuild.java │ │ │ │ ├── NpmBuild.java │ │ │ │ ├── NugetBuild.java │ │ │ │ ├── PackageManagerBuild.java │ │ │ │ └── PipBuild.java │ │ │ │ ├── deployers │ │ │ │ ├── CommonDeployer.java │ │ │ │ ├── Deployer.java │ │ │ │ ├── GradleDeployer.java │ │ │ │ └── MavenDeployer.java │ │ │ │ └── resolvers │ │ │ │ ├── CommonResolver.java │ │ │ │ ├── GradleResolver.java │ │ │ │ ├── MavenResolver.java │ │ │ │ └── Resolver.java │ │ ├── declarative │ │ │ ├── BuildDataFile.java │ │ │ ├── steps │ │ │ │ ├── BuildAppendStep.java │ │ │ │ ├── BuildInfoStep.java │ │ │ │ ├── BuildTriggerStep.java │ │ │ │ ├── CollectIssuesStep.java │ │ │ │ ├── CreateJFrogInstanceStep.java │ │ │ │ ├── CreateServerStep.java │ │ │ │ ├── InteractivePromotionStep.java │ │ │ │ ├── JfPipelinesStep.java │ │ │ │ ├── PromoteBuildStep.java │ │ │ │ ├── PublishBuildInfoStep.java │ │ │ │ ├── common │ │ │ │ │ └── DeployerResolverBase.java │ │ │ │ ├── conan │ │ │ │ │ ├── ConanClientStep.java │ │ │ │ │ ├── ConanRemoteStep.java │ │ │ │ │ └── ConanRunStep.java │ │ │ │ ├── distribution │ │ │ │ │ ├── CreateReleaseBundleStep.java │ │ │ │ │ ├── CreateUpdateReleaseBundleStep.java │ │ │ │ │ ├── DeleteReleaseBundleStep.java │ │ │ │ │ ├── DistributeReleaseBundleStep.java │ │ │ │ │ ├── RemoteReleaseBundleStep.java │ │ │ │ │ ├── SignReleaseBundleStep.java │ │ │ │ │ └── UpdateReleaseBundleStep.java │ │ │ │ ├── docker │ │ │ │ │ ├── CreateDockerBuild.java │ │ │ │ │ ├── DockerPullStep.java │ │ │ │ │ └── DockerPushStep.java │ │ │ │ ├── generic │ │ │ │ │ ├── DeletePropsStep.java │ │ │ │ │ ├── DownloadStep.java │ │ │ │ │ ├── EditPropsStep.java │ │ │ │ │ ├── GenericStep.java │ │ │ │ │ ├── SetPropsStep.java │ │ │ │ │ └── UploadStep.java │ │ │ │ ├── go │ │ │ │ │ ├── GoDeployerStep.java │ │ │ │ │ ├── GoPublishStep.java │ │ │ │ │ ├── GoResolverStep.java │ │ │ │ │ └── GoRunStep.java │ │ │ │ ├── gradle │ │ │ │ │ ├── GradleDeployerResolver.java │ │ │ │ │ ├── GradleDeployerStep.java │ │ │ │ │ ├── GradleResolverStep.java │ │ │ │ │ └── GradleStep.java │ │ │ │ ├── maven │ │ │ │ │ ├── MavenDeployerResolver.java │ │ │ │ │ ├── MavenDeployerStep.java │ │ │ │ │ ├── MavenResolverStep.java │ │ │ │ │ └── MavenStep.java │ │ │ │ ├── npm │ │ │ │ │ ├── NpmCiStep.java │ │ │ │ │ ├── NpmDeployerStep.java │ │ │ │ │ ├── NpmInstallCiStepBase.java │ │ │ │ │ ├── NpmInstallStep.java │ │ │ │ │ ├── NpmPublishStep.java │ │ │ │ │ └── NpmResolverStep.java │ │ │ │ ├── nuget │ │ │ │ │ ├── DotnetResolverStep.java │ │ │ │ │ ├── DotnetRunStep.java │ │ │ │ │ ├── NugetResolverStep.java │ │ │ │ │ ├── NugetRunStep.java │ │ │ │ │ └── NugetRunStepBase.java │ │ │ │ ├── pip │ │ │ │ │ ├── PipInstallStep.java │ │ │ │ │ └── PipResolverStep.java │ │ │ │ └── xray │ │ │ │ │ └── XrayScanStep.java │ │ │ └── utils │ │ │ │ ├── CreateBuildDataFileCallable.java │ │ │ │ ├── DeclarativePipelineUtils.java │ │ │ │ └── ReadBuildDataFileCallable.java │ │ ├── scripted │ │ │ ├── dsl │ │ │ │ ├── ArtifactoryDSL.java │ │ │ │ ├── ArtifactoryPipelineGlobal.java │ │ │ │ ├── JFrogDSL.java │ │ │ │ └── JFrogPipelineGlobal.java │ │ │ └── steps │ │ │ │ ├── AddInteractivePromotionStep.java │ │ │ │ ├── ArtifactoryGradleBuild.java │ │ │ │ ├── ArtifactoryMavenBuild.java │ │ │ │ ├── BuildAppendStep.java │ │ │ │ ├── BuildTriggerStep.java │ │ │ │ ├── CollectEnvStep.java │ │ │ │ ├── CollectIssuesStep.java │ │ │ │ ├── CreateArtifactoryServerStep.java │ │ │ │ ├── CreateBuildInfoStep.java │ │ │ │ ├── CreateDockerBuildStep.java │ │ │ │ ├── CreateGoBuildStep.java │ │ │ │ ├── CreateGradleBuildStep.java │ │ │ │ ├── CreateJFrogPlatformInstanceStep.java │ │ │ │ ├── CreateMavenBuildStep.java │ │ │ │ ├── CreateNpmBuildStep.java │ │ │ │ ├── CreateNugetBuildStep.java │ │ │ │ ├── CreatePipBuildStep.java │ │ │ │ ├── DeployStep.java │ │ │ │ ├── DistributeBuildStep.java │ │ │ │ ├── DockerPullStep.java │ │ │ │ ├── DockerPushStep.java │ │ │ │ ├── DownloadStep.java │ │ │ │ ├── EditPropsStep.java │ │ │ │ ├── GetArtifactoryServerStep.java │ │ │ │ ├── GetJFrogPlatformInstanceStep.java │ │ │ │ ├── GoPublishStep.java │ │ │ │ ├── GoRunStep.java │ │ │ │ ├── MavenDescriptorStep.java │ │ │ │ ├── NpmCiStep.java │ │ │ │ ├── NpmInstallCiStepBase.java │ │ │ │ ├── NpmInstallStep.java │ │ │ │ ├── NpmPublishStep.java │ │ │ │ ├── NugetRunStep.java │ │ │ │ ├── PipInstallStep.java │ │ │ │ ├── PromoteBuildStep.java │ │ │ │ ├── PublishBuildInfoStep.java │ │ │ │ ├── UploadStep.java │ │ │ │ ├── XrayScanBuildStep.java │ │ │ │ ├── conan │ │ │ │ ├── AddRemoteStep.java │ │ │ │ ├── AddUserStep.java │ │ │ │ ├── InitConanClientStep.java │ │ │ │ └── RunCommandStep.java │ │ │ │ └── distribution │ │ │ │ ├── CreateReleaseBundleStep.java │ │ │ │ ├── CreateUpdateReleaseBundleStep.java │ │ │ │ ├── DeleteReleaseBundleStep.java │ │ │ │ ├── DistributeReleaseBundleStep.java │ │ │ │ ├── RemoteReleaseBundleStep.java │ │ │ │ ├── SignReleaseBundleStep.java │ │ │ │ └── UpdateReleaseBundleStep.java │ │ └── types │ │ │ └── File.java │ │ ├── release │ │ ├── DistributionUtils.java │ │ ├── PromotionConfig.java │ │ ├── PromotionUtils.java │ │ ├── ReleaseAction.java │ │ ├── ReleaseRepository.java │ │ ├── VcsConfig.java │ │ ├── VersionedModule.java │ │ ├── gradle │ │ │ ├── BaseGradleReleaseAction.java │ │ │ ├── GradleModule.java │ │ │ ├── GradlePropertiesTransformer.java │ │ │ ├── GradleReleaseAction.java │ │ │ ├── GradleReleaseApiAction.java │ │ │ └── GradleReleaseWrapper.java │ │ ├── maven │ │ │ ├── BaseMavenReleaseAction.java │ │ │ ├── MavenModulesExtractor.java │ │ │ ├── MavenReleaseAction.java │ │ │ ├── MavenReleaseApiAction.java │ │ │ ├── MavenReleaseWrapper.java │ │ │ └── PomTransformer.java │ │ ├── promotion │ │ │ ├── LoadBuildsResponse.java │ │ │ ├── PromotionConfig.java │ │ │ ├── PromotionInfo.java │ │ │ └── UnifiedPromoteBuildAction.java │ │ └── scm │ │ │ ├── AbstractScmCoordinator.java │ │ │ ├── AbstractScmManager.java │ │ │ ├── ScmCoordinator.java │ │ │ ├── ScmManager.java │ │ │ ├── git │ │ │ ├── GitCoordinator.java │ │ │ ├── GitManager.java │ │ │ └── GitPushDryRunCallable.java │ │ │ ├── perforce │ │ │ ├── AbstractPerforceManager.java │ │ │ ├── P4Manager.java │ │ │ └── PerforceCoordinator.java │ │ │ └── svn │ │ │ ├── SubversionCoordinator.java │ │ │ └── SubversionManager.java │ │ ├── trigger │ │ ├── ArtifactoryCause.java │ │ ├── ArtifactoryMultibranchTrigger.java │ │ ├── ArtifactoryTrigger.java │ │ ├── ArtifactoryTriggerInfo.java │ │ └── BaseTrigger.java │ │ └── util │ │ ├── BuildRetentionFactory.java │ │ ├── BuildUniqueIdentifierHelper.java │ │ ├── ConcurrentJobsHelper.java │ │ ├── CredentialManager.java │ │ ├── Credentials.java │ │ ├── ErrorResponse.java │ │ ├── ExtractorUtils.java │ │ ├── FormValidations.java │ │ ├── IncludesExcludes.java │ │ ├── IssuesTrackerHelper.java │ │ ├── JenkinsBuildInfoLog.java │ │ ├── MavenVersionHelper.java │ │ ├── PluginDependencyHelper.java │ │ ├── PropertyUtils.java │ │ ├── ProxyUtils.java │ │ ├── RefreshRepository.java │ │ ├── RefreshServerResponse.java │ │ ├── RepositoriesUtils.java │ │ ├── ResolverContext.java │ │ ├── SerializationUtils.java │ │ ├── SpecUtils.java │ │ ├── converters │ │ ├── ArtifactoryBuilderConverter.java │ │ ├── ArtifactoryServerConverter.java │ │ ├── CredentialsConfigConverter.java │ │ ├── DeployerResolverOverriderConverter.java │ │ ├── GenericDeployerResolverOverriderConverter.java │ │ └── ServerDetailsConverter.java │ │ ├── plugins │ │ ├── MultiConfigurationUtils.java │ │ └── PluginsUtils.java │ │ └── publisher │ │ ├── PublisherContext.java │ │ ├── PublisherFind.java │ │ ├── PublisherFindImpl.java │ │ └── PublisherFlexible.java ├── resources │ ├── META-INF │ │ └── hudson.remoting.ClassFilter │ ├── index.jelly │ ├── lib │ │ └── jfrog │ │ │ ├── blockWrapper.jelly │ │ │ ├── credentials.jelly │ │ │ ├── customRadioButton.jelly │ │ │ ├── dynamicRepos.jelly │ │ │ ├── global │ │ │ └── global.js │ │ │ ├── promotionPlugins.jelly │ │ │ ├── promotions │ │ │ └── promotions.js │ │ │ ├── repos.jelly │ │ │ ├── repos │ │ │ ├── credentials.js │ │ │ └── repos.js │ │ │ └── taglib │ └── org │ │ └── jfrog │ │ └── hudson │ │ ├── ArtifactoryBuilder │ │ └── global.jelly │ │ ├── ArtifactoryRedeployPublisher │ │ └── config.jelly │ │ ├── BuildInfoResultAction │ │ ├── badge.jelly │ │ ├── index.jelly │ │ └── summary.jelly │ │ ├── Messages.properties │ │ ├── XrayScanResultAction │ │ ├── badge.jelly │ │ └── summary.jelly │ │ ├── generic │ │ └── ArtifactoryGenericConfigurator │ │ │ └── config.jelly │ │ ├── gradle │ │ └── ArtifactoryGradleConfigurator │ │ │ └── config.jelly │ │ ├── ivy │ │ ├── ArtifactoryIvyConfigurator │ │ │ └── config.jelly │ │ └── ArtifactoryIvyFreeStyleConfigurator │ │ │ └── config.jelly │ │ ├── maven3 │ │ ├── ArtifactoryMaven3Configurator │ │ │ └── config.jelly │ │ ├── ArtifactoryMaven3NativeConfigurator │ │ │ └── config.jelly │ │ ├── Maven3Builder │ │ │ ├── config.jelly │ │ │ └── config.properties │ │ ├── Messages.properties │ │ └── classworlds-freestyle.conf │ │ ├── pipeline │ │ ├── action │ │ │ ├── DeployedGradleArtifactsAction │ │ │ │ ├── index.jelly │ │ │ │ └── summary.jelly │ │ │ └── DeployedMavenArtifactsAction │ │ │ │ ├── index.jelly │ │ │ │ └── summary.jelly │ │ └── scripted │ │ │ └── dsl │ │ │ └── ArtifactoryDSL │ │ │ └── help.jelly │ │ ├── release │ │ ├── PromoteBuildAction │ │ │ ├── badge.jelly │ │ │ ├── form.jelly │ │ │ └── progress.jelly │ │ ├── gradle │ │ │ └── GradleReleaseAction │ │ │ │ └── index.jelly │ │ ├── maven │ │ │ ├── MavenReleaseAction │ │ │ │ └── index.jelly │ │ │ └── MavenReleaseWrapper │ │ │ │ └── config.jelly │ │ └── promotion │ │ │ └── UnifiedPromoteBuildAction │ │ │ ├── badge.jelly │ │ │ ├── form.jelly │ │ │ └── progress.jelly │ │ └── trigger │ │ ├── ArtifactoryMultibranchTrigger │ │ └── config.jelly │ │ └── ArtifactoryTrigger │ │ └── config.jelly └── webapp │ ├── help │ ├── ArtifactoryBuilder │ │ ├── help-artifactory-url.html │ │ ├── help-bypassproxy.html │ │ ├── help-connectionRetry.html │ │ ├── help-deploymentThreads.html │ │ ├── help-distribution-url.html │ │ ├── help-password.html │ │ ├── help-pipelinesIntegrationUrl.html │ │ ├── help-platform-url.html │ │ ├── help-resolverCredentials.html │ │ ├── help-resolverPassword.html │ │ ├── help-resolverUserName.html │ │ ├── help-serverId.html │ │ ├── help-timeout.html │ │ ├── help-useCredentialsPlugin.html │ │ └── help-userName.html │ ├── ArtifactoryGradleConfigurator │ │ ├── help-deployIvy.html │ │ ├── help-deployMaven.html │ │ └── help-useArtifactoryGradlePlugin.html │ ├── ArtifactoryMaven3NativeConfigurator │ │ └── help.html │ ├── ArtifactoryRedeployPublisher │ │ └── help-evenIfUnstable.html │ ├── JFrogPipelines │ │ └── parameter.html │ ├── Trigger │ │ ├── help-branchesToTrigger.html │ │ └── help-pathsToWatch.html │ ├── common │ │ ├── help-DownloadSpec.html │ │ ├── help-UploadSpec.html │ │ ├── help-VCSPassword.html │ │ ├── help-VCSUserName.html │ │ ├── help-aggregateBuildIssues.html │ │ ├── help-allowPromotionOfNonStagedBuilds.html │ │ ├── help-artifactPattern.html │ │ ├── help-asyncBuildRetention.html │ │ ├── help-combinationFilter.html │ │ ├── help-customizedBuildName.html │ │ ├── help-deployArtifacts.html │ │ ├── help-deployBuildInfo.html │ │ ├── help-deployPattern.html │ │ ├── help-deployReleases.html │ │ ├── help-deployRepository.html │ │ ├── help-deploySnapshots.html │ │ ├── help-deployedArtifactExcludePattern.html │ │ ├── help-deployedArtifactIncludePattern.html │ │ ├── help-deployerPassword.html │ │ ├── help-deployerUserName.html │ │ ├── help-deploymentProperties.html │ │ ├── help-discardBuildArtifacts.html │ │ ├── help-discardBuilds.html │ │ ├── help-enableIssueTrackerIntegration.html │ │ ├── help-envVarsExcludePatterns.html │ │ ├── help-envVarsIncludePatterns.html │ │ ├── help-filterExcludedArtifactsFromBuild.html │ │ ├── help-includeEnvVars.html │ │ ├── help-ivyPattern.html │ │ ├── help-overrideBuildName.html │ │ ├── help-overridingDeployerCredentials.html │ │ ├── help-overridingResolverCredentials.html │ │ ├── help-passIdentifiedDownstream.html │ │ ├── help-project.html │ │ ├── help-recordAllDependencies.html │ │ ├── help-resolvePattern.html │ │ ├── help-resolverUserName.html │ │ ├── help-stagingStrategies.html │ │ └── help-useMavenPatterns.html │ ├── pipeline │ │ ├── artifactoryServerID.html │ │ ├── downloadJson.html │ │ └── uploadJson.html │ └── release │ │ ├── PromoteBuildAction │ │ ├── help-build.html │ │ ├── help-defaultPromotionTargetRepository.html │ │ ├── help-failFast.html │ │ ├── help-includeDependencies.html │ │ ├── help-promotionComment.html │ │ ├── help-promotionRepository.html │ │ ├── help-promotionSourceRepository.html │ │ ├── help-stagingComment.html │ │ ├── help-targetStatus.html │ │ └── help-useCopy.html │ │ ├── ReleaseAction │ │ ├── help-createReleaseBranch.html │ │ ├── help-createVcsTag.html │ │ ├── help-currentVersion.html │ │ ├── help-nextDevelopmentComment.html │ │ ├── help-nextVersion.html │ │ ├── help-promotionPlugin.html │ │ ├── help-releaseBranch.html │ │ ├── help-releaseVersion.html │ │ ├── help-stagingRepository.html │ │ ├── help-tagComment.html │ │ ├── help-tagUrl.html │ │ ├── help-versioningGlobal.html │ │ ├── help-versioningNone.html │ │ └── help-versioningPerModule.html │ │ ├── common │ │ ├── help-defaultReleaseStagingRepository.html │ │ ├── help-releaseBranchPrefix.html │ │ ├── help-releaseManagement.html │ │ ├── help-stagingPlugin.html │ │ ├── help-tagBaseUrl.html │ │ ├── help-targetRemoteName.html │ │ └── help-useReleaseBranch.html │ │ ├── gradle │ │ ├── GradleReleaseAction │ │ │ ├── help-nextDevelopmentValue.html │ │ │ ├── help-nextDevelopmentVersion.html │ │ │ ├── help-releaseValue.html │ │ │ └── help-releaseVersion.html │ │ └── GradleReleaseWrapper │ │ │ ├── help-alternativeTasks.html │ │ │ ├── help-nextIntegPropsKeys.html │ │ │ └── help-releasePropsKeys.html │ │ └── maven │ │ └── MavenReleaseWrapper │ │ ├── help-alternativeGoals.html │ │ ├── help-tagPrefix.html │ │ └── help-versioningDefault.html │ └── images │ ├── artifactory-icon.png │ ├── artifactory-promote.png │ ├── artifactory-release.png │ ├── bintray.png │ └── xray-icon.png └── test ├── java └── org │ └── jfrog │ └── hudson │ ├── ArtifactoryBuilderTest.java │ ├── TestUtils.java │ ├── jfpipelines │ ├── JFrogPipelinesHttpClientTest.java │ └── JobStatusPayloadTest.java │ ├── pipeline │ ├── ArtifactoryDownloadUploadJsonTest.java │ ├── UtilsTest.java │ ├── common │ │ └── types │ │ │ └── buildInfo │ │ │ └── EnvTest.java │ └── integration │ │ ├── CommonITestsPipeline.java │ │ ├── DeclarativeITest.java │ │ ├── ITestUtils.java │ │ ├── PipelineTestBase.java │ │ ├── PipelineType.java │ │ ├── ScriptedITest.java │ │ └── TestRepository.java │ ├── release │ ├── ReleaseActionTest.java │ └── maven │ │ └── PomTransformerTest.java │ ├── trigger │ └── ArtifactoryMultibranchTriggerTest.java │ └── util │ ├── EscapePropertyTest.java │ └── converters │ ├── ArtifactoryBuilderConverterTest.java │ ├── CredentialsConfigConverterTest.java │ └── DeployerResolverOverriderConverterTest.java └── resources ├── converters ├── config-3.10.6-1.xml ├── config-3.10.6-3.xml └── config-3.5.0.xml ├── integration ├── collectIssues-example │ └── buildaddgit_.git_suffix │ │ ├── HEAD │ │ ├── config │ │ ├── logs │ │ └── HEAD │ │ ├── objects │ │ ├── 43 │ │ │ └── 20bb81c3d3b9d173b8efb911daa371ac3a0c0e │ │ ├── 61 │ │ │ └── 98a6294722fdc75a570aac505784d2ec0d1818 │ │ ├── 79 │ │ │ └── 31df4bd53290e8178a245d01bec34a245f3226 │ │ ├── 90 │ │ │ └── d9cc9bf05666e6910bdfa4f914e96c706454c3 │ │ ├── 0e │ │ │ └── 58052bba5f3c26e64c68925d8a27f820dc6a15 │ │ ├── a9 │ │ │ └── eecfb2a71b8b0a73ecf027faf6d6f3739575dd │ │ ├── b0 │ │ │ └── 33a0e508bdb52eee25654c9e12db33ff01b8ff │ │ ├── b2 │ │ │ └── abdac384f111c1a8a518e05b963a3bb2541659 │ │ ├── b4 │ │ │ └── f457c219dbb3517be908d4e70f0ada2fd8b8f9 │ │ ├── e6 │ │ │ └── 9de29bb2d1d6434b8b29ae775ad8c2e48c5391 │ │ └── ee │ │ │ └── 53e86bc7114bc6378e08db25d725f9552e69a6 │ │ └── refs │ │ └── heads │ │ └── master ├── conan-example │ └── conanfile.txt ├── docker-example │ └── Dockerfile ├── dotnet-example │ ├── reference.cs │ ├── reference.csproj │ └── reference.sln ├── files │ ├── 1 │ │ ├── a1.in │ │ ├── b1.in │ │ └── c1.in │ ├── a.in │ ├── b.in │ └── c.in ├── go-example │ ├── go.mod │ ├── go.sum │ └── hello.go ├── gradle-example-ci │ ├── api │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── gradle │ │ │ ├── api │ │ │ ├── PersonList.java │ │ │ └── package.html │ │ │ └── apiImpl │ │ │ └── Impl.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── services │ │ └── webservice │ │ │ ├── build.gradle │ │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── gradle │ │ │ │ └── webservice │ │ │ │ └── TestTest.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── gradle │ │ │ └── webservice │ │ │ └── TestTestTest.java │ ├── settings.gradle │ └── shared │ │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── gradle │ │ │ └── shared │ │ │ ├── Person.java │ │ │ └── package-info.java │ │ └── resources │ │ └── org │ │ └── gradle │ │ └── shared │ │ └── main.properties ├── gradle-example │ ├── api │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── gradle │ │ │ ├── api │ │ │ ├── PersonList.java │ │ │ └── package.html │ │ │ └── apiImpl │ │ │ └── Impl.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── services │ │ └── webservice │ │ │ ├── build.gradle │ │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── gradle │ │ │ │ └── webservice │ │ │ │ └── TestTest.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── gradle │ │ │ └── webservice │ │ │ └── TestTestTest.java │ ├── settings.gradle │ └── shared │ │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── gradle │ │ │ └── shared │ │ │ ├── Person.java │ │ │ └── package-info.java │ │ └── resources │ │ └── org │ │ └── gradle │ │ └── shared │ │ └── main.properties ├── maven-example │ ├── .mvn │ │ ├── jvm.config │ │ └── wrapper │ │ │ ├── MavenWrapperDownloader.java │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── multi1 │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── artifactory │ │ │ │ └── test │ │ │ │ └── Multi1.java │ │ │ └── test │ │ │ └── java │ │ │ └── artifactory │ │ │ └── test │ │ │ └── AppTest.java │ ├── multi2 │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── artifactory │ │ │ │ └── test │ │ │ │ └── App.java │ │ │ └── test │ │ │ └── java │ │ │ └── artifactory │ │ │ └── test │ │ │ └── AppTest.java │ ├── multi3 │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── artifactory │ │ │ │ │ └── test │ │ │ │ │ └── Multi3.java │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ └── web.xml │ │ │ └── test │ │ │ └── java │ │ │ └── artifactory │ │ │ └── test │ │ │ └── AppTest.java │ ├── mvnw │ ├── mvnw.cmd │ └── pom.xml ├── maven-jib-example │ ├── multi1 │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── artifactory │ │ │ └── test │ │ │ └── Multi1.java │ ├── multi2 │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── artifactory │ │ │ └── test │ │ │ └── App.java │ ├── multi3 │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── artifactory │ │ │ │ └── test │ │ │ │ └── Multi3.java │ │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── web.xml │ └── pom.xml ├── npm-example │ ├── package-lock.json │ └── package.json ├── nuget-example │ ├── packages.config │ ├── packagesconfig.cs │ ├── packagesconfig.csproj │ └── packagesconfig.sln ├── pip-example │ └── requirements.txt ├── pipelines │ ├── declarative │ │ ├── buildAppend.pipeline │ │ ├── buildInfoProjects.pipeline │ │ ├── buildRetention.pipeline │ │ ├── buildTriggerGlobalServer.pipeline │ │ ├── buildTriggerNewServer.pipeline │ │ ├── collectIssues.pipeline │ │ ├── conan.pipeline │ │ ├── deleteProps.pipeline │ │ ├── dockerPull.pipeline │ │ ├── dockerPush.pipeline │ │ ├── dotnet.pipeline │ │ ├── downloadByAql.pipeline │ │ ├── downloadByBuildOnly.pipeline │ │ ├── downloadByPattern.pipeline │ │ ├── downloadByPatternAndBuild.pipeline │ │ ├── downloadByShaAndBuild.pipeline │ │ ├── downloadByShaAndBuildName.pipeline │ │ ├── downloadFailNoOp.pipeline │ │ ├── downloadNonExistingBuild.pipeline │ │ ├── go.pipeline │ │ ├── goCustomModuleName.pipeline │ │ ├── gradle.pipeline │ │ ├── gradleCiServer.pipeline │ │ ├── jfPipelinesReport.pipeline │ │ ├── jfPipelinesResources.pipeline │ │ ├── maven.pipeline │ │ ├── mavenJib.pipeline │ │ ├── mavenWrapper.pipeline │ │ ├── npmCi.pipeline │ │ ├── npmCustomModuleName.pipeline │ │ ├── npmInstall.pipeline │ │ ├── nuget.pipeline │ │ ├── pip.pipeline │ │ ├── promote.pipeline │ │ ├── promoteProject.pipeline │ │ ├── rbCreateDistDel.pipeline │ │ ├── rbCreateUpdateSign.pipeline │ │ ├── setProps.pipeline │ │ ├── upload.pipeline │ │ ├── uploadDownloadCustomModuleName.pipeline │ │ ├── uploadFailNoOp.pipeline │ │ ├── uploadUsingPlatformConfig.pipeline │ │ ├── uploadWithProject.pipeline │ │ ├── uploadWithProps.pipeline │ │ ├── xrayScanFailBuildFalse.pipeline │ │ ├── xrayScanFailBuildTrue.pipeline │ │ ├── xrayScanMockFalse.pipeline │ │ └── xrayScanMockTrue.pipeline │ └── scripted │ │ ├── append.pipeline │ │ ├── buildAppend.pipeline │ │ ├── buildInfoProjects.pipeline │ │ ├── buildRetention.pipeline │ │ ├── buildTriggerGlobalServer.pipeline │ │ ├── buildTriggerNewServer.pipeline │ │ ├── collectIssues.pipeline │ │ ├── conan.pipeline │ │ ├── deleteProps.pipeline │ │ ├── dockerPull.pipeline │ │ ├── dockerPush.pipeline │ │ ├── dotnet.pipeline │ │ ├── downloadByAql.pipeline │ │ ├── downloadByBuildOnly.pipeline │ │ ├── downloadByPattern.pipeline │ │ ├── downloadByPatternAndBuild.pipeline │ │ ├── downloadByShaAndBuild.pipeline │ │ ├── downloadByShaAndBuildName.pipeline │ │ ├── downloadDuplicationsPart1.pipeline │ │ ├── downloadDuplicationsPart2.pipeline │ │ ├── downloadFailNoOp.pipeline │ │ ├── downloadNonExistingBuild.pipeline │ │ ├── go.pipeline │ │ ├── goCustomModuleName.pipeline │ │ ├── gradle.pipeline │ │ ├── gradleCiServer.pipeline │ │ ├── gradleCiServerPublication.pipeline │ │ ├── maven.pipeline │ │ ├── mavenJib.pipeline │ │ ├── mavenWrapper.pipeline │ │ ├── npmCi.pipeline │ │ ├── npmCustomModuleName.pipeline │ │ ├── npmInstall.pipeline │ │ ├── nuget.pipeline │ │ ├── pip.pipeline │ │ ├── promote.pipeline │ │ ├── promoteProject.pipeline │ │ ├── rbCreateDistDel.pipeline │ │ ├── rbCreateUpdateSign.pipeline │ │ ├── setProps.pipeline │ │ ├── upload.pipeline │ │ ├── uploadDownloadCustomModuleName.pipeline │ │ ├── uploadDuplicationsPart1.pipeline │ │ ├── uploadDuplicationsPart2.pipeline │ │ ├── uploadFailNoOp.pipeline │ │ ├── uploadUsingPlatformConfig.pipeline │ │ ├── uploadWithProject.pipeline │ │ ├── uploadWithProps.pipeline │ │ ├── xrayScanFailBuildFalse.pipeline │ │ ├── xrayScanFailBuildTrue.pipeline │ │ ├── xrayScanMockFalse.pipeline │ │ └── xrayScanMockTrue.pipeline └── settings │ ├── jenkins-artifactory-tests-conan-local.json │ ├── jenkins-artifactory-tests-go-local.json │ ├── jenkins-artifactory-tests-go-remote.json │ ├── jenkins-artifactory-tests-go-virtual.json │ ├── jenkins-artifactory-tests-local-1.json │ ├── jenkins-artifactory-tests-local-2.json │ ├── jenkins-artifactory-tests-maven-remote.json │ ├── jenkins-artifactory-tests-npm-local.json │ ├── jenkins-artifactory-tests-npm-remote.json │ ├── jenkins-artifactory-tests-nuget-remote.json │ ├── jenkins-artifactory-tests-pip-remote.json │ ├── jenkins-artifactory-tests-pip-virtual.json │ └── jenkins-artifactory-tests-project-conf.json ├── jsons └── download.json └── poms ├── multi ├── pom.expected.xml └── pom.xml ├── parentonly ├── pom.expected.xml └── pom.xml ├── scm ├── pom.expected.xml └── pom.xml └── snapshots ├── pom-snapshot-parent.xml ├── pom-snapshot.xml ├── pom-snapshots-in-dep-management.xml └── pom-snapshots-in-dependencies.xml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/.github/workflows/analysis.yml -------------------------------------------------------------------------------- /.github/workflows/cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/.github/workflows/cla.yml -------------------------------------------------------------------------------- /.github/workflows/frogbot-scan-and-fix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/.github/workflows/frogbot-scan-and-fix.yml -------------------------------------------------------------------------------- /.github/workflows/frogbot-scan-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/.github/workflows/frogbot-scan-pr.yml -------------------------------------------------------------------------------- /.github/workflows/monitorIssues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/.github/workflows/monitorIssues.yml -------------------------------------------------------------------------------- /.github/workflows/removeLabel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/.github/workflows/removeLabel.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/LICENSE-2.0.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /readme_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/readme_image.png -------------------------------------------------------------------------------- /release/pipelines.release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/release/pipelines.release.yml -------------------------------------------------------------------------------- /release/pipelines.resources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/release/pipelines.resources.yml -------------------------------------------------------------------------------- /release/pipelines.snapshot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/release/pipelines.snapshot.yml -------------------------------------------------------------------------------- /release/specs/dev-rbc-filespec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/release/specs/dev-rbc-filespec.json -------------------------------------------------------------------------------- /release/specs/prod-rbc-filespec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/release/specs/prod-rbc-filespec.json -------------------------------------------------------------------------------- /spotbugs-security-exclude.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/spotbugs-security-exclude.xml -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/AbstractBuildInfoDeployer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/AbstractBuildInfoDeployer.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/AbstractBuildWrapperDescriptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/AbstractBuildWrapperDescriptor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/ArtifactoryBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/ArtifactoryBuilder.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/ArtifactoryPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/ArtifactoryPlugin.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/ArtifactoryRedeployPublisher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/ArtifactoryRedeployPublisher.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/ArtifactoryServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/ArtifactoryServer.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/BuildInfoAwareConfigurator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/BuildInfoAwareConfigurator.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/BuildInfoResultAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/BuildInfoResultAction.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/CredentialsConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/CredentialsConfig.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/DeployerOverrider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/DeployerOverrider.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/JFrogPlatformInstance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/JFrogPlatformInstance.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/MavenDependenciesRecord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/MavenDependenciesRecord.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/MavenDependency.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/MavenDependency.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/MultiConfigurationAware.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/MultiConfigurationAware.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/PluginSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/PluginSettings.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/PublishedBuildDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/PublishedBuildDetails.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/Repository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/Repository.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/RepositoryConf.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/RepositoryConf.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/ResolutionRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/ResolutionRepository.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/ResolverOverrider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/ResolverOverrider.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/ServerDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/ServerDetails.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/SpecConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/SpecConfiguration.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/UserPluginInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/UserPluginInfo.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/UserPluginInfoParam.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/UserPluginInfoParam.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/XrayScanResultAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/XrayScanResultAction.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/action/ActionableHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/action/ActionableHelper.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/action/ArtifactoryProjectAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/action/ArtifactoryProjectAction.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/action/JfrogPipelinesAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/action/JfrogPipelinesAction.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/generic/ArtifactoryGenericConfigurator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/generic/ArtifactoryGenericConfigurator.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/generic/DependenciesDownloaderImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/generic/DependenciesDownloaderImpl.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/generic/EditPropertiesCallable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/generic/EditPropertiesCallable.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/generic/FilesResolverCallable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/generic/FilesResolverCallable.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/generic/GenericArtifactsDeployer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/generic/GenericArtifactsDeployer.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/generic/GenericArtifactsResolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/generic/GenericArtifactsResolver.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/generic/GenericBuildInfoDeployer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/generic/GenericBuildInfoDeployer.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/gradle/ArtifactoryGradleConfigurator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/gradle/ArtifactoryGradleConfigurator.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/gradle/GradleInitScriptWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/gradle/GradleInitScriptWriter.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/ivy/ArtifactoryIvyConfigurator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/ivy/ArtifactoryIvyConfigurator.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/ivy/ArtifactoryIvyFreeStyleConfigurator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/ivy/ArtifactoryIvyFreeStyleConfigurator.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/ivy/ArtifactoryIvyRunListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/ivy/ArtifactoryIvyRunListener.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/jfpipelines/JFrogPipelinesHttpClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/jfpipelines/JFrogPipelinesHttpClient.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/jfpipelines/JFrogPipelinesJobInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/jfpipelines/JFrogPipelinesJobInfo.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/jfpipelines/JFrogPipelinesParameter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/jfpipelines/JFrogPipelinesParameter.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/jfpipelines/JFrogPipelinesServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/jfpipelines/JFrogPipelinesServer.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/jfpipelines/OutputResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/jfpipelines/OutputResource.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/jfpipelines/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/jfpipelines/Utils.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/jfpipelines/listeners/AbstractBuildListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/jfpipelines/listeners/AbstractBuildListener.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/jfpipelines/listeners/WorkflowListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/jfpipelines/listeners/WorkflowListener.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/jfpipelines/payloads/JobStartedPayload.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/jfpipelines/payloads/JobStartedPayload.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/jfpipelines/payloads/JobStatusPayload.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/jfpipelines/payloads/JobStatusPayload.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/jfpipelines/payloads/VersionPayload.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/jfpipelines/payloads/VersionPayload.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/maven2/ArtifactsDeployer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/maven2/ArtifactsDeployer.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/maven2/MavenBuildInfoDeployer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/maven2/MavenBuildInfoDeployer.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/maven2/MavenDependenciesRecorder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/maven2/MavenDependenciesRecorder.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/maven3/ArtifactoryMaven3Configurator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/maven3/ArtifactoryMaven3Configurator.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/maven3/ArtifactoryMaven3NativeConfigurator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/maven3/ArtifactoryMaven3NativeConfigurator.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/maven3/Maven3Builder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/maven3/Maven3Builder.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/maven3/Maven3ExtractorListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/maven3/Maven3ExtractorListener.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/maven3/MavenVersionCallable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/maven3/MavenVersionCallable.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/maven3/extractor/MavenExtractorEnvironment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/maven3/extractor/MavenExtractorEnvironment.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/maven3/extractor/MavenExtractorHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/maven3/extractor/MavenExtractorHelper.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/ArtifactorySynchronousStepExecution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/ArtifactorySynchronousStepExecution.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/action/DeployedArtifact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/action/DeployedArtifact.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/action/DeployedArtifactsAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/action/DeployedArtifactsAction.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/action/DeployedGradleArtifactsAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/action/DeployedGradleArtifactsAction.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/action/DeployedMavenArtifactsAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/action/DeployedMavenArtifactsAction.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/ArtifactoryConfigurator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/ArtifactoryConfigurator.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/BuildInfoDeployer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/BuildInfoDeployer.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/Utils.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/BuildAppendExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/BuildAppendExecutor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/BuildInfoProcessRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/BuildInfoProcessRunner.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/BuildTriggerExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/BuildTriggerExecutor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/CollectEnvExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/CollectEnvExecutor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/CollectIssuesExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/CollectIssuesExecutor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/ConanExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/ConanExecutor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/CreateDockerBuildExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/CreateDockerBuildExecutor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/DistributionExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/DistributionExecutor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/DockerEnvExtractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/DockerEnvExtractor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/DockerPullExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/DockerPullExecutor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/DockerPushExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/DockerPushExecutor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/EditPropsExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/EditPropsExecutor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/EnvExtractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/EnvExtractor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/Executor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/Executor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/GenericDownloadExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/GenericDownloadExecutor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/GenericUploadExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/GenericUploadExecutor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/GoEnvExtractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/GoEnvExtractor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/GoExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/GoExecutor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/GoPublishExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/GoPublishExecutor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/GoRunExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/GoRunExecutor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/GradleExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/GradleExecutor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/MavenExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/MavenExecutor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/MavenGradleEnvExtractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/MavenGradleEnvExtractor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/NpmEnvExtractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/NpmEnvExtractor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/NpmExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/NpmExecutor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/NpmInstallCiExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/NpmInstallCiExecutor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/NpmPublishExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/NpmPublishExecutor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/NugetEnvExtractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/NugetEnvExtractor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/NugetRunExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/NugetRunExecutor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/PipEnvExtractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/PipEnvExtractor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/PipInstallExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/PipInstallExecutor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/PromotionExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/PromotionExecutor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/PublishBuildInfoExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/PublishBuildInfoExecutor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/ReleaseBundleSignExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/ReleaseBundleSignExecutor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/executors/XrayExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/executors/XrayExecutor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/types/ArtifactoryServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/types/ArtifactoryServer.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/types/ConanClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/types/ConanClient.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/types/ConanRemote.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/types/ConanRemote.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/types/Connection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/types/Connection.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/types/DistributionConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/types/DistributionConfig.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/types/DistributionServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/types/DistributionServer.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/types/Docker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/types/Docker.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/types/Filter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/types/Filter.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/types/GradlePublications.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/types/GradlePublications.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/types/JFrogPlatformInstance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/types/JFrogPlatformInstance.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/types/MavenDescriptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/types/MavenDescriptor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/types/PromotionConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/types/PromotionConfig.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/types/XrayScanConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/types/XrayScanConfig.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/types/XrayScanResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/types/XrayScanResult.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/types/buildInfo/BuildInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/types/buildInfo/BuildInfo.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/types/buildInfo/BuildRetention.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/types/buildInfo/BuildRetention.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/types/buildInfo/Env.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/types/buildInfo/Env.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/types/buildInfo/EnvFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/types/buildInfo/EnvFilter.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/types/buildInfo/Issues.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/types/buildInfo/Issues.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/types/builds/GoBuild.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/types/builds/GoBuild.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/types/builds/GradleBuild.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/types/builds/GradleBuild.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/types/builds/MavenBuild.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/types/builds/MavenBuild.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/types/builds/NpmBuild.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/types/builds/NpmBuild.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/types/builds/NugetBuild.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/types/builds/NugetBuild.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/types/builds/PackageManagerBuild.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/types/builds/PackageManagerBuild.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/types/builds/PipBuild.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/types/builds/PipBuild.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/types/deployers/CommonDeployer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/types/deployers/CommonDeployer.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/types/deployers/Deployer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/types/deployers/Deployer.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/types/deployers/GradleDeployer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/types/deployers/GradleDeployer.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/types/deployers/MavenDeployer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/types/deployers/MavenDeployer.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/types/resolvers/CommonResolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/types/resolvers/CommonResolver.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/types/resolvers/GradleResolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/types/resolvers/GradleResolver.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/types/resolvers/MavenResolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/types/resolvers/MavenResolver.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/common/types/resolvers/Resolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/common/types/resolvers/Resolver.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/BuildDataFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/BuildDataFile.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/BuildAppendStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/BuildAppendStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/BuildInfoStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/BuildInfoStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/BuildTriggerStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/BuildTriggerStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/CollectIssuesStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/CollectIssuesStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/CreateJFrogInstanceStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/CreateJFrogInstanceStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/CreateServerStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/CreateServerStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/InteractivePromotionStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/InteractivePromotionStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/JfPipelinesStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/JfPipelinesStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/PromoteBuildStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/PromoteBuildStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/PublishBuildInfoStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/PublishBuildInfoStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/conan/ConanClientStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/conan/ConanClientStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/conan/ConanRemoteStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/conan/ConanRemoteStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/conan/ConanRunStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/conan/ConanRunStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/docker/CreateDockerBuild.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/docker/CreateDockerBuild.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/docker/DockerPullStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/docker/DockerPullStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/docker/DockerPushStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/docker/DockerPushStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/generic/DeletePropsStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/generic/DeletePropsStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/generic/DownloadStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/generic/DownloadStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/generic/EditPropsStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/generic/EditPropsStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/generic/GenericStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/generic/GenericStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/generic/SetPropsStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/generic/SetPropsStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/generic/UploadStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/generic/UploadStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/go/GoDeployerStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/go/GoDeployerStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/go/GoPublishStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/go/GoPublishStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/go/GoResolverStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/go/GoResolverStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/go/GoRunStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/go/GoRunStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/gradle/GradleStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/gradle/GradleStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/maven/MavenDeployerStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/maven/MavenDeployerStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/maven/MavenResolverStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/maven/MavenResolverStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/maven/MavenStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/maven/MavenStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/npm/NpmCiStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/npm/NpmCiStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/npm/NpmDeployerStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/npm/NpmDeployerStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/npm/NpmInstallCiStepBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/npm/NpmInstallCiStepBase.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/npm/NpmInstallStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/npm/NpmInstallStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/npm/NpmPublishStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/npm/NpmPublishStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/npm/NpmResolverStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/npm/NpmResolverStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/nuget/DotnetResolverStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/nuget/DotnetResolverStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/nuget/DotnetRunStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/nuget/DotnetRunStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/nuget/NugetResolverStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/nuget/NugetResolverStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/nuget/NugetRunStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/nuget/NugetRunStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/nuget/NugetRunStepBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/nuget/NugetRunStepBase.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/pip/PipInstallStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/pip/PipInstallStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/pip/PipResolverStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/pip/PipResolverStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/steps/xray/XrayScanStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/steps/xray/XrayScanStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/declarative/utils/DeclarativePipelineUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/declarative/utils/DeclarativePipelineUtils.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/dsl/ArtifactoryDSL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/dsl/ArtifactoryDSL.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/dsl/ArtifactoryPipelineGlobal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/dsl/ArtifactoryPipelineGlobal.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/dsl/JFrogDSL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/dsl/JFrogDSL.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/dsl/JFrogPipelineGlobal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/dsl/JFrogPipelineGlobal.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/AddInteractivePromotionStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/AddInteractivePromotionStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/ArtifactoryGradleBuild.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/ArtifactoryGradleBuild.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/ArtifactoryMavenBuild.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/ArtifactoryMavenBuild.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/BuildAppendStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/BuildAppendStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/BuildTriggerStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/BuildTriggerStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/CollectEnvStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/CollectEnvStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/CollectIssuesStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/CollectIssuesStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/CreateArtifactoryServerStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/CreateArtifactoryServerStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/CreateBuildInfoStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/CreateBuildInfoStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/CreateDockerBuildStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/CreateDockerBuildStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/CreateGoBuildStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/CreateGoBuildStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/CreateGradleBuildStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/CreateGradleBuildStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/CreateMavenBuildStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/CreateMavenBuildStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/CreateNpmBuildStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/CreateNpmBuildStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/CreateNugetBuildStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/CreateNugetBuildStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/CreatePipBuildStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/CreatePipBuildStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/DeployStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/DeployStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/DistributeBuildStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/DistributeBuildStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/DockerPullStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/DockerPullStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/DockerPushStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/DockerPushStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/DownloadStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/DownloadStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/EditPropsStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/EditPropsStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/GetArtifactoryServerStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/GetArtifactoryServerStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/GoPublishStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/GoPublishStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/GoRunStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/GoRunStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/MavenDescriptorStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/MavenDescriptorStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/NpmCiStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/NpmCiStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/NpmInstallCiStepBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/NpmInstallCiStepBase.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/NpmInstallStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/NpmInstallStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/NpmPublishStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/NpmPublishStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/NugetRunStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/NugetRunStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/PipInstallStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/PipInstallStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/PromoteBuildStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/PromoteBuildStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/PublishBuildInfoStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/PublishBuildInfoStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/UploadStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/UploadStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/XrayScanBuildStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/XrayScanBuildStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/conan/AddRemoteStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/conan/AddRemoteStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/conan/AddUserStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/conan/AddUserStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/conan/InitConanClientStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/conan/InitConanClientStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/scripted/steps/conan/RunCommandStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/scripted/steps/conan/RunCommandStep.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/pipeline/types/File.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/pipeline/types/File.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/DistributionUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/DistributionUtils.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/PromotionConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/PromotionConfig.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/PromotionUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/PromotionUtils.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/ReleaseAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/ReleaseAction.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/ReleaseRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/ReleaseRepository.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/VcsConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/VcsConfig.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/VersionedModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/VersionedModule.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/gradle/BaseGradleReleaseAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/gradle/BaseGradleReleaseAction.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/gradle/GradleModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/gradle/GradleModule.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/gradle/GradlePropertiesTransformer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/gradle/GradlePropertiesTransformer.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/gradle/GradleReleaseAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/gradle/GradleReleaseAction.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/gradle/GradleReleaseApiAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/gradle/GradleReleaseApiAction.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/gradle/GradleReleaseWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/gradle/GradleReleaseWrapper.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/maven/BaseMavenReleaseAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/maven/BaseMavenReleaseAction.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/maven/MavenModulesExtractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/maven/MavenModulesExtractor.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/maven/MavenReleaseAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/maven/MavenReleaseAction.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/maven/MavenReleaseApiAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/maven/MavenReleaseApiAction.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/maven/MavenReleaseWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/maven/MavenReleaseWrapper.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/maven/PomTransformer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/maven/PomTransformer.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/promotion/LoadBuildsResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/promotion/LoadBuildsResponse.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/promotion/PromotionConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/promotion/PromotionConfig.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/promotion/PromotionInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/promotion/PromotionInfo.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/promotion/UnifiedPromoteBuildAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/promotion/UnifiedPromoteBuildAction.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/scm/AbstractScmCoordinator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/scm/AbstractScmCoordinator.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/scm/AbstractScmManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/scm/AbstractScmManager.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/scm/ScmCoordinator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/scm/ScmCoordinator.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/scm/ScmManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/scm/ScmManager.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/scm/git/GitCoordinator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/scm/git/GitCoordinator.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/scm/git/GitManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/scm/git/GitManager.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/scm/git/GitPushDryRunCallable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/scm/git/GitPushDryRunCallable.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/scm/perforce/AbstractPerforceManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/scm/perforce/AbstractPerforceManager.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/scm/perforce/P4Manager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/scm/perforce/P4Manager.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/scm/perforce/PerforceCoordinator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/scm/perforce/PerforceCoordinator.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/scm/svn/SubversionCoordinator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/scm/svn/SubversionCoordinator.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/release/scm/svn/SubversionManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/release/scm/svn/SubversionManager.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/trigger/ArtifactoryCause.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/trigger/ArtifactoryCause.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/trigger/ArtifactoryMultibranchTrigger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/trigger/ArtifactoryMultibranchTrigger.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/trigger/ArtifactoryTrigger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/trigger/ArtifactoryTrigger.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/trigger/ArtifactoryTriggerInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/trigger/ArtifactoryTriggerInfo.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/trigger/BaseTrigger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/trigger/BaseTrigger.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/util/BuildRetentionFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/util/BuildRetentionFactory.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/util/BuildUniqueIdentifierHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/util/BuildUniqueIdentifierHelper.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/util/ConcurrentJobsHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/util/ConcurrentJobsHelper.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/util/CredentialManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/util/CredentialManager.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/util/Credentials.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/util/Credentials.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/util/ErrorResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/util/ErrorResponse.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/util/ExtractorUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/util/ExtractorUtils.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/util/FormValidations.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/util/FormValidations.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/util/IncludesExcludes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/util/IncludesExcludes.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/util/IssuesTrackerHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/util/IssuesTrackerHelper.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/util/JenkinsBuildInfoLog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/util/JenkinsBuildInfoLog.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/util/MavenVersionHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/util/MavenVersionHelper.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/util/PluginDependencyHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/util/PluginDependencyHelper.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/util/PropertyUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/util/PropertyUtils.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/util/ProxyUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/util/ProxyUtils.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/util/RefreshRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/util/RefreshRepository.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/util/RefreshServerResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/util/RefreshServerResponse.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/util/RepositoriesUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/util/RepositoriesUtils.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/util/ResolverContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/util/ResolverContext.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/util/SerializationUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/util/SerializationUtils.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/util/SpecUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/util/SpecUtils.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/util/converters/ArtifactoryBuilderConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/util/converters/ArtifactoryBuilderConverter.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/util/converters/ArtifactoryServerConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/util/converters/ArtifactoryServerConverter.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/util/converters/CredentialsConfigConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/util/converters/CredentialsConfigConverter.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/util/converters/DeployerResolverOverriderConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/util/converters/DeployerResolverOverriderConverter.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/util/converters/ServerDetailsConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/util/converters/ServerDetailsConverter.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/util/plugins/MultiConfigurationUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/util/plugins/MultiConfigurationUtils.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/util/plugins/PluginsUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/util/plugins/PluginsUtils.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/util/publisher/PublisherContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/util/publisher/PublisherContext.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/util/publisher/PublisherFind.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/util/publisher/PublisherFind.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/util/publisher/PublisherFindImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/util/publisher/PublisherFindImpl.java -------------------------------------------------------------------------------- /src/main/java/org/jfrog/hudson/util/publisher/PublisherFlexible.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/java/org/jfrog/hudson/util/publisher/PublisherFlexible.java -------------------------------------------------------------------------------- /src/main/resources/META-INF/hudson.remoting.ClassFilter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/META-INF/hudson.remoting.ClassFilter -------------------------------------------------------------------------------- /src/main/resources/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/index.jelly -------------------------------------------------------------------------------- /src/main/resources/lib/jfrog/blockWrapper.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/lib/jfrog/blockWrapper.jelly -------------------------------------------------------------------------------- /src/main/resources/lib/jfrog/credentials.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/lib/jfrog/credentials.jelly -------------------------------------------------------------------------------- /src/main/resources/lib/jfrog/customRadioButton.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/lib/jfrog/customRadioButton.jelly -------------------------------------------------------------------------------- /src/main/resources/lib/jfrog/dynamicRepos.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/lib/jfrog/dynamicRepos.jelly -------------------------------------------------------------------------------- /src/main/resources/lib/jfrog/global/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/lib/jfrog/global/global.js -------------------------------------------------------------------------------- /src/main/resources/lib/jfrog/promotionPlugins.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/lib/jfrog/promotionPlugins.jelly -------------------------------------------------------------------------------- /src/main/resources/lib/jfrog/promotions/promotions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/lib/jfrog/promotions/promotions.js -------------------------------------------------------------------------------- /src/main/resources/lib/jfrog/repos.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/lib/jfrog/repos.jelly -------------------------------------------------------------------------------- /src/main/resources/lib/jfrog/repos/credentials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/lib/jfrog/repos/credentials.js -------------------------------------------------------------------------------- /src/main/resources/lib/jfrog/repos/repos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/lib/jfrog/repos/repos.js -------------------------------------------------------------------------------- /src/main/resources/lib/jfrog/taglib: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/main/resources/org/jfrog/hudson/ArtifactoryBuilder/global.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/org/jfrog/hudson/ArtifactoryBuilder/global.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jfrog/hudson/ArtifactoryRedeployPublisher/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/org/jfrog/hudson/ArtifactoryRedeployPublisher/config.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jfrog/hudson/BuildInfoResultAction/badge.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/org/jfrog/hudson/BuildInfoResultAction/badge.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jfrog/hudson/BuildInfoResultAction/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/org/jfrog/hudson/BuildInfoResultAction/index.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jfrog/hudson/BuildInfoResultAction/summary.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/org/jfrog/hudson/BuildInfoResultAction/summary.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jfrog/hudson/Messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/org/jfrog/hudson/Messages.properties -------------------------------------------------------------------------------- /src/main/resources/org/jfrog/hudson/XrayScanResultAction/badge.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/org/jfrog/hudson/XrayScanResultAction/badge.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jfrog/hudson/XrayScanResultAction/summary.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/org/jfrog/hudson/XrayScanResultAction/summary.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jfrog/hudson/generic/ArtifactoryGenericConfigurator/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/org/jfrog/hudson/generic/ArtifactoryGenericConfigurator/config.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jfrog/hudson/gradle/ArtifactoryGradleConfigurator/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/org/jfrog/hudson/gradle/ArtifactoryGradleConfigurator/config.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jfrog/hudson/ivy/ArtifactoryIvyConfigurator/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/org/jfrog/hudson/ivy/ArtifactoryIvyConfigurator/config.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jfrog/hudson/maven3/ArtifactoryMaven3Configurator/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/org/jfrog/hudson/maven3/ArtifactoryMaven3Configurator/config.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jfrog/hudson/maven3/Maven3Builder/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/org/jfrog/hudson/maven3/Maven3Builder/config.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jfrog/hudson/maven3/Maven3Builder/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/org/jfrog/hudson/maven3/Maven3Builder/config.properties -------------------------------------------------------------------------------- /src/main/resources/org/jfrog/hudson/maven3/Messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/org/jfrog/hudson/maven3/Messages.properties -------------------------------------------------------------------------------- /src/main/resources/org/jfrog/hudson/maven3/classworlds-freestyle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/org/jfrog/hudson/maven3/classworlds-freestyle.conf -------------------------------------------------------------------------------- /src/main/resources/org/jfrog/hudson/pipeline/scripted/dsl/ArtifactoryDSL/help.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/org/jfrog/hudson/pipeline/scripted/dsl/ArtifactoryDSL/help.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jfrog/hudson/release/PromoteBuildAction/badge.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/org/jfrog/hudson/release/PromoteBuildAction/badge.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jfrog/hudson/release/PromoteBuildAction/form.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/org/jfrog/hudson/release/PromoteBuildAction/form.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jfrog/hudson/release/PromoteBuildAction/progress.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/org/jfrog/hudson/release/PromoteBuildAction/progress.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jfrog/hudson/release/gradle/GradleReleaseAction/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/org/jfrog/hudson/release/gradle/GradleReleaseAction/index.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jfrog/hudson/release/maven/MavenReleaseAction/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/org/jfrog/hudson/release/maven/MavenReleaseAction/index.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jfrog/hudson/release/maven/MavenReleaseWrapper/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/org/jfrog/hudson/release/maven/MavenReleaseWrapper/config.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jfrog/hudson/trigger/ArtifactoryMultibranchTrigger/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/org/jfrog/hudson/trigger/ArtifactoryMultibranchTrigger/config.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jfrog/hudson/trigger/ArtifactoryTrigger/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/resources/org/jfrog/hudson/trigger/ArtifactoryTrigger/config.jelly -------------------------------------------------------------------------------- /src/main/webapp/help/ArtifactoryBuilder/help-artifactory-url.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/ArtifactoryBuilder/help-artifactory-url.html -------------------------------------------------------------------------------- /src/main/webapp/help/ArtifactoryBuilder/help-bypassproxy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/ArtifactoryBuilder/help-bypassproxy.html -------------------------------------------------------------------------------- /src/main/webapp/help/ArtifactoryBuilder/help-connectionRetry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/ArtifactoryBuilder/help-connectionRetry.html -------------------------------------------------------------------------------- /src/main/webapp/help/ArtifactoryBuilder/help-deploymentThreads.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/ArtifactoryBuilder/help-deploymentThreads.html -------------------------------------------------------------------------------- /src/main/webapp/help/ArtifactoryBuilder/help-distribution-url.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/ArtifactoryBuilder/help-distribution-url.html -------------------------------------------------------------------------------- /src/main/webapp/help/ArtifactoryBuilder/help-password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/ArtifactoryBuilder/help-password.html -------------------------------------------------------------------------------- /src/main/webapp/help/ArtifactoryBuilder/help-pipelinesIntegrationUrl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/ArtifactoryBuilder/help-pipelinesIntegrationUrl.html -------------------------------------------------------------------------------- /src/main/webapp/help/ArtifactoryBuilder/help-platform-url.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/ArtifactoryBuilder/help-platform-url.html -------------------------------------------------------------------------------- /src/main/webapp/help/ArtifactoryBuilder/help-resolverCredentials.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/ArtifactoryBuilder/help-resolverCredentials.html -------------------------------------------------------------------------------- /src/main/webapp/help/ArtifactoryBuilder/help-resolverPassword.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/ArtifactoryBuilder/help-resolverPassword.html -------------------------------------------------------------------------------- /src/main/webapp/help/ArtifactoryBuilder/help-resolverUserName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/ArtifactoryBuilder/help-resolverUserName.html -------------------------------------------------------------------------------- /src/main/webapp/help/ArtifactoryBuilder/help-serverId.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/ArtifactoryBuilder/help-serverId.html -------------------------------------------------------------------------------- /src/main/webapp/help/ArtifactoryBuilder/help-timeout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/ArtifactoryBuilder/help-timeout.html -------------------------------------------------------------------------------- /src/main/webapp/help/ArtifactoryBuilder/help-useCredentialsPlugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/ArtifactoryBuilder/help-useCredentialsPlugin.html -------------------------------------------------------------------------------- /src/main/webapp/help/ArtifactoryBuilder/help-userName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/ArtifactoryBuilder/help-userName.html -------------------------------------------------------------------------------- /src/main/webapp/help/ArtifactoryGradleConfigurator/help-deployIvy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/ArtifactoryGradleConfigurator/help-deployIvy.html -------------------------------------------------------------------------------- /src/main/webapp/help/ArtifactoryGradleConfigurator/help-deployMaven.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/ArtifactoryGradleConfigurator/help-deployMaven.html -------------------------------------------------------------------------------- /src/main/webapp/help/ArtifactoryGradleConfigurator/help-useArtifactoryGradlePlugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/ArtifactoryGradleConfigurator/help-useArtifactoryGradlePlugin.html -------------------------------------------------------------------------------- /src/main/webapp/help/ArtifactoryMaven3NativeConfigurator/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/ArtifactoryMaven3NativeConfigurator/help.html -------------------------------------------------------------------------------- /src/main/webapp/help/ArtifactoryRedeployPublisher/help-evenIfUnstable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/ArtifactoryRedeployPublisher/help-evenIfUnstable.html -------------------------------------------------------------------------------- /src/main/webapp/help/JFrogPipelines/parameter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/JFrogPipelines/parameter.html -------------------------------------------------------------------------------- /src/main/webapp/help/Trigger/help-branchesToTrigger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/Trigger/help-branchesToTrigger.html -------------------------------------------------------------------------------- /src/main/webapp/help/Trigger/help-pathsToWatch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/Trigger/help-pathsToWatch.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-DownloadSpec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-DownloadSpec.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-UploadSpec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-UploadSpec.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-VCSPassword.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-VCSPassword.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-VCSUserName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-VCSUserName.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-aggregateBuildIssues.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-aggregateBuildIssues.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-allowPromotionOfNonStagedBuilds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-allowPromotionOfNonStagedBuilds.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-artifactPattern.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-artifactPattern.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-asyncBuildRetention.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-asyncBuildRetention.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-combinationFilter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-combinationFilter.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-customizedBuildName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-customizedBuildName.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-deployArtifacts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-deployArtifacts.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-deployBuildInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-deployBuildInfo.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-deployPattern.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-deployPattern.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-deployReleases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-deployReleases.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-deployRepository.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-deployRepository.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-deploySnapshots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-deploySnapshots.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-deployedArtifactExcludePattern.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-deployedArtifactExcludePattern.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-deployedArtifactIncludePattern.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-deployedArtifactIncludePattern.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-deployerPassword.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-deployerPassword.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-deployerUserName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-deployerUserName.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-deploymentProperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-deploymentProperties.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-discardBuildArtifacts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-discardBuildArtifacts.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-discardBuilds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-discardBuilds.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-enableIssueTrackerIntegration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-enableIssueTrackerIntegration.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-envVarsExcludePatterns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-envVarsExcludePatterns.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-envVarsIncludePatterns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-envVarsIncludePatterns.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-filterExcludedArtifactsFromBuild.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-filterExcludedArtifactsFromBuild.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-includeEnvVars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-includeEnvVars.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-ivyPattern.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-ivyPattern.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-overrideBuildName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-overrideBuildName.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-overridingDeployerCredentials.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-overridingDeployerCredentials.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-overridingResolverCredentials.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-overridingResolverCredentials.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-passIdentifiedDownstream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-passIdentifiedDownstream.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-project.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-recordAllDependencies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-recordAllDependencies.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-resolvePattern.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-resolvePattern.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-resolverUserName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-resolverUserName.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-stagingStrategies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-stagingStrategies.html -------------------------------------------------------------------------------- /src/main/webapp/help/common/help-useMavenPatterns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/common/help-useMavenPatterns.html -------------------------------------------------------------------------------- /src/main/webapp/help/pipeline/artifactoryServerID.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/pipeline/artifactoryServerID.html -------------------------------------------------------------------------------- /src/main/webapp/help/pipeline/downloadJson.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/pipeline/downloadJson.html -------------------------------------------------------------------------------- /src/main/webapp/help/pipeline/uploadJson.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/pipeline/uploadJson.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/PromoteBuildAction/help-build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/PromoteBuildAction/help-build.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/PromoteBuildAction/help-failFast.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/PromoteBuildAction/help-failFast.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/PromoteBuildAction/help-includeDependencies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/PromoteBuildAction/help-includeDependencies.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/PromoteBuildAction/help-promotionComment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/PromoteBuildAction/help-promotionComment.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/PromoteBuildAction/help-promotionRepository.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/PromoteBuildAction/help-promotionRepository.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/PromoteBuildAction/help-promotionSourceRepository.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/PromoteBuildAction/help-promotionSourceRepository.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/PromoteBuildAction/help-stagingComment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/PromoteBuildAction/help-stagingComment.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/PromoteBuildAction/help-targetStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/PromoteBuildAction/help-targetStatus.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/PromoteBuildAction/help-useCopy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/PromoteBuildAction/help-useCopy.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/ReleaseAction/help-createReleaseBranch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/ReleaseAction/help-createReleaseBranch.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/ReleaseAction/help-createVcsTag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/ReleaseAction/help-createVcsTag.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/ReleaseAction/help-currentVersion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/ReleaseAction/help-currentVersion.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/ReleaseAction/help-nextDevelopmentComment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/ReleaseAction/help-nextDevelopmentComment.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/ReleaseAction/help-nextVersion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/ReleaseAction/help-nextVersion.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/ReleaseAction/help-promotionPlugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/ReleaseAction/help-promotionPlugin.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/ReleaseAction/help-releaseBranch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/ReleaseAction/help-releaseBranch.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/ReleaseAction/help-releaseVersion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/ReleaseAction/help-releaseVersion.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/ReleaseAction/help-stagingRepository.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/ReleaseAction/help-stagingRepository.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/ReleaseAction/help-tagComment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/ReleaseAction/help-tagComment.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/ReleaseAction/help-tagUrl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/ReleaseAction/help-tagUrl.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/ReleaseAction/help-versioningGlobal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/ReleaseAction/help-versioningGlobal.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/ReleaseAction/help-versioningNone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/ReleaseAction/help-versioningNone.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/ReleaseAction/help-versioningPerModule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/ReleaseAction/help-versioningPerModule.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/common/help-defaultReleaseStagingRepository.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/common/help-defaultReleaseStagingRepository.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/common/help-releaseBranchPrefix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/common/help-releaseBranchPrefix.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/common/help-releaseManagement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/common/help-releaseManagement.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/common/help-stagingPlugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/common/help-stagingPlugin.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/common/help-tagBaseUrl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/common/help-tagBaseUrl.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/common/help-targetRemoteName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/common/help-targetRemoteName.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/common/help-useReleaseBranch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/common/help-useReleaseBranch.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/gradle/GradleReleaseAction/help-nextDevelopmentValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/gradle/GradleReleaseAction/help-nextDevelopmentValue.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/gradle/GradleReleaseAction/help-releaseValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/gradle/GradleReleaseAction/help-releaseValue.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/gradle/GradleReleaseAction/help-releaseVersion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/gradle/GradleReleaseAction/help-releaseVersion.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/gradle/GradleReleaseWrapper/help-alternativeTasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/gradle/GradleReleaseWrapper/help-alternativeTasks.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/gradle/GradleReleaseWrapper/help-nextIntegPropsKeys.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/gradle/GradleReleaseWrapper/help-nextIntegPropsKeys.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/gradle/GradleReleaseWrapper/help-releasePropsKeys.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/gradle/GradleReleaseWrapper/help-releasePropsKeys.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/maven/MavenReleaseWrapper/help-alternativeGoals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/maven/MavenReleaseWrapper/help-alternativeGoals.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/maven/MavenReleaseWrapper/help-tagPrefix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/maven/MavenReleaseWrapper/help-tagPrefix.html -------------------------------------------------------------------------------- /src/main/webapp/help/release/maven/MavenReleaseWrapper/help-versioningDefault.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/help/release/maven/MavenReleaseWrapper/help-versioningDefault.html -------------------------------------------------------------------------------- /src/main/webapp/images/artifactory-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/images/artifactory-icon.png -------------------------------------------------------------------------------- /src/main/webapp/images/artifactory-promote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/images/artifactory-promote.png -------------------------------------------------------------------------------- /src/main/webapp/images/artifactory-release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/images/artifactory-release.png -------------------------------------------------------------------------------- /src/main/webapp/images/bintray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/images/bintray.png -------------------------------------------------------------------------------- /src/main/webapp/images/xray-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/main/webapp/images/xray-icon.png -------------------------------------------------------------------------------- /src/test/java/org/jfrog/hudson/ArtifactoryBuilderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/java/org/jfrog/hudson/ArtifactoryBuilderTest.java -------------------------------------------------------------------------------- /src/test/java/org/jfrog/hudson/TestUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/java/org/jfrog/hudson/TestUtils.java -------------------------------------------------------------------------------- /src/test/java/org/jfrog/hudson/jfpipelines/JFrogPipelinesHttpClientTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/java/org/jfrog/hudson/jfpipelines/JFrogPipelinesHttpClientTest.java -------------------------------------------------------------------------------- /src/test/java/org/jfrog/hudson/jfpipelines/JobStatusPayloadTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/java/org/jfrog/hudson/jfpipelines/JobStatusPayloadTest.java -------------------------------------------------------------------------------- /src/test/java/org/jfrog/hudson/pipeline/ArtifactoryDownloadUploadJsonTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/java/org/jfrog/hudson/pipeline/ArtifactoryDownloadUploadJsonTest.java -------------------------------------------------------------------------------- /src/test/java/org/jfrog/hudson/pipeline/UtilsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/java/org/jfrog/hudson/pipeline/UtilsTest.java -------------------------------------------------------------------------------- /src/test/java/org/jfrog/hudson/pipeline/common/types/buildInfo/EnvTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/java/org/jfrog/hudson/pipeline/common/types/buildInfo/EnvTest.java -------------------------------------------------------------------------------- /src/test/java/org/jfrog/hudson/pipeline/integration/CommonITestsPipeline.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/java/org/jfrog/hudson/pipeline/integration/CommonITestsPipeline.java -------------------------------------------------------------------------------- /src/test/java/org/jfrog/hudson/pipeline/integration/DeclarativeITest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/java/org/jfrog/hudson/pipeline/integration/DeclarativeITest.java -------------------------------------------------------------------------------- /src/test/java/org/jfrog/hudson/pipeline/integration/ITestUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/java/org/jfrog/hudson/pipeline/integration/ITestUtils.java -------------------------------------------------------------------------------- /src/test/java/org/jfrog/hudson/pipeline/integration/PipelineTestBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/java/org/jfrog/hudson/pipeline/integration/PipelineTestBase.java -------------------------------------------------------------------------------- /src/test/java/org/jfrog/hudson/pipeline/integration/PipelineType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/java/org/jfrog/hudson/pipeline/integration/PipelineType.java -------------------------------------------------------------------------------- /src/test/java/org/jfrog/hudson/pipeline/integration/ScriptedITest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/java/org/jfrog/hudson/pipeline/integration/ScriptedITest.java -------------------------------------------------------------------------------- /src/test/java/org/jfrog/hudson/pipeline/integration/TestRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/java/org/jfrog/hudson/pipeline/integration/TestRepository.java -------------------------------------------------------------------------------- /src/test/java/org/jfrog/hudson/release/ReleaseActionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/java/org/jfrog/hudson/release/ReleaseActionTest.java -------------------------------------------------------------------------------- /src/test/java/org/jfrog/hudson/release/maven/PomTransformerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/java/org/jfrog/hudson/release/maven/PomTransformerTest.java -------------------------------------------------------------------------------- /src/test/java/org/jfrog/hudson/trigger/ArtifactoryMultibranchTriggerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/java/org/jfrog/hudson/trigger/ArtifactoryMultibranchTriggerTest.java -------------------------------------------------------------------------------- /src/test/java/org/jfrog/hudson/util/EscapePropertyTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/java/org/jfrog/hudson/util/EscapePropertyTest.java -------------------------------------------------------------------------------- /src/test/java/org/jfrog/hudson/util/converters/ArtifactoryBuilderConverterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/java/org/jfrog/hudson/util/converters/ArtifactoryBuilderConverterTest.java -------------------------------------------------------------------------------- /src/test/java/org/jfrog/hudson/util/converters/CredentialsConfigConverterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/java/org/jfrog/hudson/util/converters/CredentialsConfigConverterTest.java -------------------------------------------------------------------------------- /src/test/resources/converters/config-3.10.6-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/converters/config-3.10.6-1.xml -------------------------------------------------------------------------------- /src/test/resources/converters/config-3.10.6-3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/converters/config-3.10.6-3.xml -------------------------------------------------------------------------------- /src/test/resources/converters/config-3.5.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/converters/config-3.5.0.xml -------------------------------------------------------------------------------- /src/test/resources/integration/collectIssues-example/buildaddgit_.git_suffix/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /src/test/resources/integration/collectIssues-example/buildaddgit_.git_suffix/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/collectIssues-example/buildaddgit_.git_suffix/config -------------------------------------------------------------------------------- /src/test/resources/integration/collectIssues-example/buildaddgit_.git_suffix/refs/heads/master: -------------------------------------------------------------------------------- 1 | b033a0e508bdb52eee25654c9e12db33ff01b8ff 2 | -------------------------------------------------------------------------------- /src/test/resources/integration/conan-example/conanfile.txt: -------------------------------------------------------------------------------- 1 | [requires] 2 | fmt/8.1.1 3 | 4 | [generators] 5 | cmake_paths 6 | -------------------------------------------------------------------------------- /src/test/resources/integration/docker-example/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/docker-example/Dockerfile -------------------------------------------------------------------------------- /src/test/resources/integration/dotnet-example/reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/dotnet-example/reference.cs -------------------------------------------------------------------------------- /src/test/resources/integration/dotnet-example/reference.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/dotnet-example/reference.csproj -------------------------------------------------------------------------------- /src/test/resources/integration/dotnet-example/reference.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/dotnet-example/reference.sln -------------------------------------------------------------------------------- /src/test/resources/integration/files/1/a1.in: -------------------------------------------------------------------------------- 1 | How about a magic trick? -------------------------------------------------------------------------------- /src/test/resources/integration/files/1/b1.in: -------------------------------------------------------------------------------- 1 | Prostagma -------------------------------------------------------------------------------- /src/test/resources/integration/files/1/c1.in: -------------------------------------------------------------------------------- 1 | Life is like a box of chocolates -------------------------------------------------------------------------------- /src/test/resources/integration/files/a.in: -------------------------------------------------------------------------------- 1 | I find your lack of faith disturbing -------------------------------------------------------------------------------- /src/test/resources/integration/files/b.in: -------------------------------------------------------------------------------- 1 | I’ve got a bad feeling about this. -------------------------------------------------------------------------------- /src/test/resources/integration/files/c.in: -------------------------------------------------------------------------------- 1 | It’s a trap! -------------------------------------------------------------------------------- /src/test/resources/integration/go-example/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/go-example/go.mod -------------------------------------------------------------------------------- /src/test/resources/integration/go-example/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/go-example/go.sum -------------------------------------------------------------------------------- /src/test/resources/integration/go-example/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/go-example/hello.go -------------------------------------------------------------------------------- /src/test/resources/integration/gradle-example-ci/api/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/gradle-example-ci/api/build.gradle -------------------------------------------------------------------------------- /src/test/resources/integration/gradle-example-ci/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/gradle-example-ci/build.gradle -------------------------------------------------------------------------------- /src/test/resources/integration/gradle-example-ci/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/gradle-example-ci/gradle.properties -------------------------------------------------------------------------------- /src/test/resources/integration/gradle-example-ci/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/gradle-example-ci/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/test/resources/integration/gradle-example-ci/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/gradle-example-ci/gradlew -------------------------------------------------------------------------------- /src/test/resources/integration/gradle-example-ci/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/gradle-example-ci/gradlew.bat -------------------------------------------------------------------------------- /src/test/resources/integration/gradle-example-ci/services/webservice/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/gradle-example-ci/services/webservice/build.gradle -------------------------------------------------------------------------------- /src/test/resources/integration/gradle-example-ci/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/gradle-example-ci/settings.gradle -------------------------------------------------------------------------------- /src/test/resources/integration/gradle-example/api/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/gradle-example/api/build.gradle -------------------------------------------------------------------------------- /src/test/resources/integration/gradle-example/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/gradle-example/build.gradle -------------------------------------------------------------------------------- /src/test/resources/integration/gradle-example/gradle.properties: -------------------------------------------------------------------------------- 1 | currentVersion=1.0-SNAPSHOT 2 | -------------------------------------------------------------------------------- /src/test/resources/integration/gradle-example/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/gradle-example/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/test/resources/integration/gradle-example/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/gradle-example/gradlew -------------------------------------------------------------------------------- /src/test/resources/integration/gradle-example/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/gradle-example/gradlew.bat -------------------------------------------------------------------------------- /src/test/resources/integration/gradle-example/services/webservice/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/gradle-example/services/webservice/build.gradle -------------------------------------------------------------------------------- /src/test/resources/integration/gradle-example/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/gradle-example/settings.gradle -------------------------------------------------------------------------------- /src/test/resources/integration/maven-example/.mvn/jvm.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/maven-example/.mvn/jvm.config -------------------------------------------------------------------------------- /src/test/resources/integration/maven-example/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/maven-example/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /src/test/resources/integration/maven-example/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/maven-example/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /src/test/resources/integration/maven-example/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/maven-example/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /src/test/resources/integration/maven-example/multi1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/maven-example/multi1/pom.xml -------------------------------------------------------------------------------- /src/test/resources/integration/maven-example/multi2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/maven-example/multi2/pom.xml -------------------------------------------------------------------------------- /src/test/resources/integration/maven-example/multi3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/maven-example/multi3/pom.xml -------------------------------------------------------------------------------- /src/test/resources/integration/maven-example/multi3/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/maven-example/multi3/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /src/test/resources/integration/maven-example/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/maven-example/mvnw -------------------------------------------------------------------------------- /src/test/resources/integration/maven-example/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/maven-example/mvnw.cmd -------------------------------------------------------------------------------- /src/test/resources/integration/maven-example/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/maven-example/pom.xml -------------------------------------------------------------------------------- /src/test/resources/integration/maven-jib-example/multi1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/maven-jib-example/multi1/pom.xml -------------------------------------------------------------------------------- /src/test/resources/integration/maven-jib-example/multi2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/maven-jib-example/multi2/pom.xml -------------------------------------------------------------------------------- /src/test/resources/integration/maven-jib-example/multi3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/maven-jib-example/multi3/pom.xml -------------------------------------------------------------------------------- /src/test/resources/integration/maven-jib-example/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/maven-jib-example/pom.xml -------------------------------------------------------------------------------- /src/test/resources/integration/npm-example/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/npm-example/package-lock.json -------------------------------------------------------------------------------- /src/test/resources/integration/npm-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/npm-example/package.json -------------------------------------------------------------------------------- /src/test/resources/integration/nuget-example/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/nuget-example/packages.config -------------------------------------------------------------------------------- /src/test/resources/integration/nuget-example/packagesconfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/nuget-example/packagesconfig.cs -------------------------------------------------------------------------------- /src/test/resources/integration/nuget-example/packagesconfig.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/nuget-example/packagesconfig.csproj -------------------------------------------------------------------------------- /src/test/resources/integration/nuget-example/packagesconfig.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/nuget-example/packagesconfig.sln -------------------------------------------------------------------------------- /src/test/resources/integration/pip-example/requirements.txt: -------------------------------------------------------------------------------- 1 | PyYAML==6.0.1 2 | macholib==1.11 3 | nltk==3.4.5 -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/buildAppend.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/buildAppend.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/buildInfoProjects.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/buildInfoProjects.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/buildRetention.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/buildRetention.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/buildTriggerNewServer.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/buildTriggerNewServer.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/collectIssues.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/collectIssues.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/conan.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/conan.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/deleteProps.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/deleteProps.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/dockerPull.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/dockerPull.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/dockerPush.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/dockerPush.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/dotnet.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/dotnet.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/downloadByAql.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/downloadByAql.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/downloadByBuildOnly.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/downloadByBuildOnly.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/downloadByPattern.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/downloadByPattern.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/downloadByShaAndBuild.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/downloadByShaAndBuild.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/downloadFailNoOp.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/downloadFailNoOp.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/go.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/go.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/goCustomModuleName.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/goCustomModuleName.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/gradle.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/gradle.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/gradleCiServer.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/gradleCiServer.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/jfPipelinesReport.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/jfPipelinesReport.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/jfPipelinesResources.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/jfPipelinesResources.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/maven.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/maven.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/mavenJib.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/mavenJib.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/mavenWrapper.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/mavenWrapper.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/npmCi.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/npmCi.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/npmCustomModuleName.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/npmCustomModuleName.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/npmInstall.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/npmInstall.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/nuget.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/nuget.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/pip.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/pip.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/promote.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/promote.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/promoteProject.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/promoteProject.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/rbCreateDistDel.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/rbCreateDistDel.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/rbCreateUpdateSign.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/rbCreateUpdateSign.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/setProps.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/setProps.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/upload.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/upload.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/uploadFailNoOp.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/uploadFailNoOp.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/uploadWithProject.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/uploadWithProject.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/uploadWithProps.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/uploadWithProps.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/xrayScanFailBuildFalse.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/xrayScanFailBuildFalse.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/xrayScanFailBuildTrue.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/xrayScanFailBuildTrue.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/xrayScanMockFalse.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/xrayScanMockFalse.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/declarative/xrayScanMockTrue.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/declarative/xrayScanMockTrue.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/append.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/append.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/buildAppend.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/buildAppend.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/buildInfoProjects.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/buildInfoProjects.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/buildRetention.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/buildRetention.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/buildTriggerGlobalServer.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/buildTriggerGlobalServer.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/buildTriggerNewServer.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/buildTriggerNewServer.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/collectIssues.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/collectIssues.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/conan.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/conan.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/deleteProps.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/deleteProps.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/dockerPull.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/dockerPull.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/dockerPush.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/dockerPush.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/dotnet.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/dotnet.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/downloadByAql.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/downloadByAql.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/downloadByBuildOnly.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/downloadByBuildOnly.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/downloadByPattern.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/downloadByPattern.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/downloadByPatternAndBuild.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/downloadByPatternAndBuild.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/downloadByShaAndBuild.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/downloadByShaAndBuild.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/downloadByShaAndBuildName.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/downloadByShaAndBuildName.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/downloadDuplicationsPart1.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/downloadDuplicationsPart1.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/downloadDuplicationsPart2.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/downloadDuplicationsPart2.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/downloadFailNoOp.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/downloadFailNoOp.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/downloadNonExistingBuild.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/downloadNonExistingBuild.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/go.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/go.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/goCustomModuleName.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/goCustomModuleName.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/gradle.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/gradle.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/gradleCiServer.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/gradleCiServer.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/gradleCiServerPublication.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/gradleCiServerPublication.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/maven.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/maven.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/mavenJib.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/mavenJib.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/mavenWrapper.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/mavenWrapper.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/npmCi.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/npmCi.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/npmCustomModuleName.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/npmCustomModuleName.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/npmInstall.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/npmInstall.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/nuget.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/nuget.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/pip.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/pip.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/promote.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/promote.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/promoteProject.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/promoteProject.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/rbCreateDistDel.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/rbCreateDistDel.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/rbCreateUpdateSign.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/rbCreateUpdateSign.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/setProps.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/setProps.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/upload.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/upload.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/uploadDuplicationsPart1.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/uploadDuplicationsPart1.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/uploadDuplicationsPart2.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/uploadDuplicationsPart2.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/uploadFailNoOp.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/uploadFailNoOp.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/uploadUsingPlatformConfig.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/uploadUsingPlatformConfig.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/uploadWithProject.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/uploadWithProject.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/uploadWithProps.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/uploadWithProps.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/xrayScanFailBuildFalse.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/xrayScanFailBuildFalse.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/xrayScanFailBuildTrue.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/xrayScanFailBuildTrue.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/xrayScanMockFalse.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/xrayScanMockFalse.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/pipelines/scripted/xrayScanMockTrue.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/pipelines/scripted/xrayScanMockTrue.pipeline -------------------------------------------------------------------------------- /src/test/resources/integration/settings/jenkins-artifactory-tests-conan-local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/settings/jenkins-artifactory-tests-conan-local.json -------------------------------------------------------------------------------- /src/test/resources/integration/settings/jenkins-artifactory-tests-go-local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/settings/jenkins-artifactory-tests-go-local.json -------------------------------------------------------------------------------- /src/test/resources/integration/settings/jenkins-artifactory-tests-go-remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/settings/jenkins-artifactory-tests-go-remote.json -------------------------------------------------------------------------------- /src/test/resources/integration/settings/jenkins-artifactory-tests-go-virtual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/settings/jenkins-artifactory-tests-go-virtual.json -------------------------------------------------------------------------------- /src/test/resources/integration/settings/jenkins-artifactory-tests-local-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/settings/jenkins-artifactory-tests-local-1.json -------------------------------------------------------------------------------- /src/test/resources/integration/settings/jenkins-artifactory-tests-local-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/settings/jenkins-artifactory-tests-local-2.json -------------------------------------------------------------------------------- /src/test/resources/integration/settings/jenkins-artifactory-tests-maven-remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/settings/jenkins-artifactory-tests-maven-remote.json -------------------------------------------------------------------------------- /src/test/resources/integration/settings/jenkins-artifactory-tests-npm-local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/settings/jenkins-artifactory-tests-npm-local.json -------------------------------------------------------------------------------- /src/test/resources/integration/settings/jenkins-artifactory-tests-npm-remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/settings/jenkins-artifactory-tests-npm-remote.json -------------------------------------------------------------------------------- /src/test/resources/integration/settings/jenkins-artifactory-tests-nuget-remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/settings/jenkins-artifactory-tests-nuget-remote.json -------------------------------------------------------------------------------- /src/test/resources/integration/settings/jenkins-artifactory-tests-pip-remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/settings/jenkins-artifactory-tests-pip-remote.json -------------------------------------------------------------------------------- /src/test/resources/integration/settings/jenkins-artifactory-tests-pip-virtual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/settings/jenkins-artifactory-tests-pip-virtual.json -------------------------------------------------------------------------------- /src/test/resources/integration/settings/jenkins-artifactory-tests-project-conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/integration/settings/jenkins-artifactory-tests-project-conf.json -------------------------------------------------------------------------------- /src/test/resources/jsons/download.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/jsons/download.json -------------------------------------------------------------------------------- /src/test/resources/poms/multi/pom.expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/poms/multi/pom.expected.xml -------------------------------------------------------------------------------- /src/test/resources/poms/multi/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/poms/multi/pom.xml -------------------------------------------------------------------------------- /src/test/resources/poms/parentonly/pom.expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/poms/parentonly/pom.expected.xml -------------------------------------------------------------------------------- /src/test/resources/poms/parentonly/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/poms/parentonly/pom.xml -------------------------------------------------------------------------------- /src/test/resources/poms/scm/pom.expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/poms/scm/pom.expected.xml -------------------------------------------------------------------------------- /src/test/resources/poms/scm/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/poms/scm/pom.xml -------------------------------------------------------------------------------- /src/test/resources/poms/snapshots/pom-snapshot-parent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/poms/snapshots/pom-snapshot-parent.xml -------------------------------------------------------------------------------- /src/test/resources/poms/snapshots/pom-snapshot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/poms/snapshots/pom-snapshot.xml -------------------------------------------------------------------------------- /src/test/resources/poms/snapshots/pom-snapshots-in-dep-management.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/poms/snapshots/pom-snapshots-in-dep-management.xml -------------------------------------------------------------------------------- /src/test/resources/poms/snapshots/pom-snapshots-in-dependencies.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrog/jenkins-artifactory-plugin/HEAD/src/test/resources/poms/snapshots/pom-snapshots-in-dependencies.xml --------------------------------------------------------------------------------