Skip to content

Commit ac638b0

Browse files
[bot] Update dist directory
1 parent fd88882 commit ac638b0

File tree

10 files changed

+116
-62
lines changed

10 files changed

+116
-62
lines changed

dist/dependency-submission/main/index.js

Lines changed: 24 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -157491,7 +157491,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
157491157491
return (mod && mod.__esModule) ? mod : { "default": mod };
157492157492
};
157493157493
Object.defineProperty(exports, "__esModule", ({ value: true }));
157494-
exports.WrapperValidationConfig = exports.GradleExecutionConfig = exports.BuildScanConfig = exports.JobSummaryOption = exports.SummaryConfig = exports.CacheCleanupOption = exports.CacheConfig = exports.DependencyGraphOption = exports.DependencyGraphConfig = exports.ACTION_METADATA_DIR = void 0;
157494+
exports.WrapperValidationConfig = exports.GradleExecutionConfig = exports.PluginRepositoryConfig = exports.BuildScanConfig = exports.JobSummaryOption = exports.SummaryConfig = exports.CacheCleanupOption = exports.CacheConfig = exports.DependencyGraphOption = exports.DependencyGraphConfig = exports.ACTION_METADATA_DIR = void 0;
157495157495
exports.getJobMatrix = getJobMatrix;
157496157496
exports.getGithubToken = getGithubToken;
157497157497
exports.getWorkspaceDirectory = getWorkspaceDirectory;
@@ -157554,6 +157554,9 @@ class DependencyGraphConfig {
157554157554
getIncludeConfigurations() {
157555157555
return getOptionalInput('dependency-graph-include-configurations');
157556157556
}
157557+
getPluginRepository() {
157558+
return new PluginRepositoryConfig();
157559+
}
157557157560
static constructJobCorrelator(workflow, jobId, matrixJson) {
157558157561
const matrixString = this.describeMatrix(matrixJson);
157559157562
const label = matrixString ? `${workflow}-${jobId}-${matrixString}` : `${workflow}-${jobId}`;
@@ -157740,14 +157743,8 @@ class BuildScanConfig {
157740157743
getDevelocityCcudPluginVersion() {
157741157744
return core.getInput('develocity-ccud-plugin-version');
157742157745
}
157743-
getGradlePluginRepositoryUrl() {
157744-
return core.getInput('gradle-plugin-repository-url');
157745-
}
157746-
getGradlePluginRepositoryUsername() {
157747-
return core.getInput('gradle-plugin-repository-username');
157748-
}
157749-
getGradlePluginRepositoryPassword() {
157750-
return core.getInput('gradle-plugin-repository-password');
157746+
getPluginRepository() {
157747+
return new PluginRepositoryConfig();
157751157748
}
157752157749
verifyTermsOfUseAgreement() {
157753157750
if ((this.getBuildScanTermsOfUseUrl() !== 'https://gradle.com/terms-of-service' &&
@@ -157762,6 +157759,18 @@ class BuildScanConfig {
157762157759
exports.BuildScanConfig = BuildScanConfig;
157763157760
BuildScanConfig.DevelocityAccessKeyEnvVar = 'DEVELOCITY_ACCESS_KEY';
157764157761
BuildScanConfig.GradleEnterpriseAccessKeyEnvVar = 'GRADLE_ENTERPRISE_ACCESS_KEY';
157762+
class PluginRepositoryConfig {
157763+
getUrl() {
157764+
return getOptionalInput('gradle-plugin-repository-url');
157765+
}
157766+
getUsername() {
157767+
return getOptionalInput('gradle-plugin-repository-username');
157768+
}
157769+
getPassword() {
157770+
return getOptionalInput('gradle-plugin-repository-password');
157771+
}
157772+
}
157773+
exports.PluginRepositoryConfig = PluginRepositoryConfig;
157765157774
class GradleExecutionConfig {
157766157775
getGradleVersion() {
157767157776
return core.getInput('gradle-version');
@@ -157999,6 +158008,9 @@ async function setup(config) {
157999158008
maybeExportVariable('DEPENDENCY_GRAPH_INCLUDE_PROJECTS', config.getIncludeProjects());
158000158009
maybeExportVariable('DEPENDENCY_GRAPH_EXCLUDE_CONFIGURATIONS', config.getExcludeConfigurations());
158001158010
maybeExportVariable('DEPENDENCY_GRAPH_INCLUDE_CONFIGURATIONS', config.getIncludeConfigurations());
158011+
maybeExportVariable('GRADLE_PLUGIN_REPOSITORY_URL', config.getPluginRepository().getUrl());
158012+
maybeExportVariable('GRADLE_PLUGIN_REPOSITORY_USERNAME', config.getPluginRepository().getUsername());
158013+
maybeExportVariable('GRADLE_PLUGIN_REPOSITORY_PASSWORD', config.getPluginRepository().getPassword());
158002158014
}
158003158015
function maybeExportVariable(variableName, value) {
158004158016
if (!process.env[variableName]) {
@@ -158368,9 +158380,9 @@ async function setup(config) {
158368158380
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_ENFORCE_URL', config.getDevelocityEnforceUrl());
158369158381
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_DEVELOCITY_PLUGIN_VERSION', config.getDevelocityPluginVersion());
158370158382
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_CCUD_PLUGIN_VERSION', config.getDevelocityCcudPluginVersion());
158371-
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION__PLUGIN_REPOSITORY_URL', config.getGradlePluginRepositoryUrl());
158372-
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION__PLUGIN_REPOSITORY_USERNAME', config.getGradlePluginRepositoryUsername());
158373-
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION__PLUGIN_REPOSITORY_PASSWORD', config.getGradlePluginRepositoryPassword());
158383+
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_PLUGIN_REPOSITORY_URL', config.getPluginRepository().getUrl());
158384+
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_PLUGIN_REPOSITORY_USERNAME', config.getPluginRepository().getUsername());
158385+
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_PLUGIN_REPOSITORY_PASSWORD', config.getPluginRepository().getPassword());
158374158386
if (config.getBuildScanPublishEnabled()) {
158375158387
maybeExportVariable('DEVELOCITY_INJECTION_ENABLED', 'true');
158376158388
maybeExportVariable('DEVELOCITY_INJECTION_DEVELOCITY_PLUGIN_VERSION', '4.0.2');

dist/dependency-submission/main/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/dependency-submission/post/index.js

Lines changed: 21 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -118235,7 +118235,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
118235118235
return (mod && mod.__esModule) ? mod : { "default": mod };
118236118236
};
118237118237
Object.defineProperty(exports, "__esModule", ({ value: true }));
118238-
exports.WrapperValidationConfig = exports.GradleExecutionConfig = exports.BuildScanConfig = exports.JobSummaryOption = exports.SummaryConfig = exports.CacheCleanupOption = exports.CacheConfig = exports.DependencyGraphOption = exports.DependencyGraphConfig = exports.ACTION_METADATA_DIR = void 0;
118238+
exports.WrapperValidationConfig = exports.GradleExecutionConfig = exports.PluginRepositoryConfig = exports.BuildScanConfig = exports.JobSummaryOption = exports.SummaryConfig = exports.CacheCleanupOption = exports.CacheConfig = exports.DependencyGraphOption = exports.DependencyGraphConfig = exports.ACTION_METADATA_DIR = void 0;
118239118239
exports.getJobMatrix = getJobMatrix;
118240118240
exports.getGithubToken = getGithubToken;
118241118241
exports.getWorkspaceDirectory = getWorkspaceDirectory;
@@ -118298,6 +118298,9 @@ class DependencyGraphConfig {
118298118298
getIncludeConfigurations() {
118299118299
return getOptionalInput('dependency-graph-include-configurations');
118300118300
}
118301+
getPluginRepository() {
118302+
return new PluginRepositoryConfig();
118303+
}
118301118304
static constructJobCorrelator(workflow, jobId, matrixJson) {
118302118305
const matrixString = this.describeMatrix(matrixJson);
118303118306
const label = matrixString ? `${workflow}-${jobId}-${matrixString}` : `${workflow}-${jobId}`;
@@ -118484,14 +118487,8 @@ class BuildScanConfig {
118484118487
getDevelocityCcudPluginVersion() {
118485118488
return core.getInput('develocity-ccud-plugin-version');
118486118489
}
118487-
getGradlePluginRepositoryUrl() {
118488-
return core.getInput('gradle-plugin-repository-url');
118489-
}
118490-
getGradlePluginRepositoryUsername() {
118491-
return core.getInput('gradle-plugin-repository-username');
118492-
}
118493-
getGradlePluginRepositoryPassword() {
118494-
return core.getInput('gradle-plugin-repository-password');
118490+
getPluginRepository() {
118491+
return new PluginRepositoryConfig();
118495118492
}
118496118493
verifyTermsOfUseAgreement() {
118497118494
if ((this.getBuildScanTermsOfUseUrl() !== 'https://gradle.com/terms-of-service' &&
@@ -118506,6 +118503,18 @@ class BuildScanConfig {
118506118503
exports.BuildScanConfig = BuildScanConfig;
118507118504
BuildScanConfig.DevelocityAccessKeyEnvVar = 'DEVELOCITY_ACCESS_KEY';
118508118505
BuildScanConfig.GradleEnterpriseAccessKeyEnvVar = 'GRADLE_ENTERPRISE_ACCESS_KEY';
118506+
class PluginRepositoryConfig {
118507+
getUrl() {
118508+
return getOptionalInput('gradle-plugin-repository-url');
118509+
}
118510+
getUsername() {
118511+
return getOptionalInput('gradle-plugin-repository-username');
118512+
}
118513+
getPassword() {
118514+
return getOptionalInput('gradle-plugin-repository-password');
118515+
}
118516+
}
118517+
exports.PluginRepositoryConfig = PluginRepositoryConfig;
118509118518
class GradleExecutionConfig {
118510118519
getGradleVersion() {
118511118520
return core.getInput('gradle-version');
@@ -118828,9 +118837,9 @@ async function setup(config) {
118828118837
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_ENFORCE_URL', config.getDevelocityEnforceUrl());
118829118838
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_DEVELOCITY_PLUGIN_VERSION', config.getDevelocityPluginVersion());
118830118839
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_CCUD_PLUGIN_VERSION', config.getDevelocityCcudPluginVersion());
118831-
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION__PLUGIN_REPOSITORY_URL', config.getGradlePluginRepositoryUrl());
118832-
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION__PLUGIN_REPOSITORY_USERNAME', config.getGradlePluginRepositoryUsername());
118833-
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION__PLUGIN_REPOSITORY_PASSWORD', config.getGradlePluginRepositoryPassword());
118840+
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_PLUGIN_REPOSITORY_URL', config.getPluginRepository().getUrl());
118841+
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_PLUGIN_REPOSITORY_USERNAME', config.getPluginRepository().getUsername());
118842+
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_PLUGIN_REPOSITORY_PASSWORD', config.getPluginRepository().getPassword());
118834118843
if (config.getBuildScanPublishEnabled()) {
118835118844
maybeExportVariable('DEVELOCITY_INJECTION_ENABLED', 'true');
118836118845
maybeExportVariable('DEVELOCITY_INJECTION_DEVELOCITY_PLUGIN_VERSION', '4.0.2');

dist/dependency-submission/post/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/setup-gradle/main/index.js

Lines changed: 24 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -157476,7 +157476,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
157476157476
return (mod && mod.__esModule) ? mod : { "default": mod };
157477157477
};
157478157478
Object.defineProperty(exports, "__esModule", ({ value: true }));
157479-
exports.WrapperValidationConfig = exports.GradleExecutionConfig = exports.BuildScanConfig = exports.JobSummaryOption = exports.SummaryConfig = exports.CacheCleanupOption = exports.CacheConfig = exports.DependencyGraphOption = exports.DependencyGraphConfig = exports.ACTION_METADATA_DIR = void 0;
157479+
exports.WrapperValidationConfig = exports.GradleExecutionConfig = exports.PluginRepositoryConfig = exports.BuildScanConfig = exports.JobSummaryOption = exports.SummaryConfig = exports.CacheCleanupOption = exports.CacheConfig = exports.DependencyGraphOption = exports.DependencyGraphConfig = exports.ACTION_METADATA_DIR = void 0;
157480157480
exports.getJobMatrix = getJobMatrix;
157481157481
exports.getGithubToken = getGithubToken;
157482157482
exports.getWorkspaceDirectory = getWorkspaceDirectory;
@@ -157539,6 +157539,9 @@ class DependencyGraphConfig {
157539157539
getIncludeConfigurations() {
157540157540
return getOptionalInput('dependency-graph-include-configurations');
157541157541
}
157542+
getPluginRepository() {
157543+
return new PluginRepositoryConfig();
157544+
}
157542157545
static constructJobCorrelator(workflow, jobId, matrixJson) {
157543157546
const matrixString = this.describeMatrix(matrixJson);
157544157547
const label = matrixString ? `${workflow}-${jobId}-${matrixString}` : `${workflow}-${jobId}`;
@@ -157725,14 +157728,8 @@ class BuildScanConfig {
157725157728
getDevelocityCcudPluginVersion() {
157726157729
return core.getInput('develocity-ccud-plugin-version');
157727157730
}
157728-
getGradlePluginRepositoryUrl() {
157729-
return core.getInput('gradle-plugin-repository-url');
157730-
}
157731-
getGradlePluginRepositoryUsername() {
157732-
return core.getInput('gradle-plugin-repository-username');
157733-
}
157734-
getGradlePluginRepositoryPassword() {
157735-
return core.getInput('gradle-plugin-repository-password');
157731+
getPluginRepository() {
157732+
return new PluginRepositoryConfig();
157736157733
}
157737157734
verifyTermsOfUseAgreement() {
157738157735
if ((this.getBuildScanTermsOfUseUrl() !== 'https://gradle.com/terms-of-service' &&
@@ -157747,6 +157744,18 @@ class BuildScanConfig {
157747157744
exports.BuildScanConfig = BuildScanConfig;
157748157745
BuildScanConfig.DevelocityAccessKeyEnvVar = 'DEVELOCITY_ACCESS_KEY';
157749157746
BuildScanConfig.GradleEnterpriseAccessKeyEnvVar = 'GRADLE_ENTERPRISE_ACCESS_KEY';
157747+
class PluginRepositoryConfig {
157748+
getUrl() {
157749+
return getOptionalInput('gradle-plugin-repository-url');
157750+
}
157751+
getUsername() {
157752+
return getOptionalInput('gradle-plugin-repository-username');
157753+
}
157754+
getPassword() {
157755+
return getOptionalInput('gradle-plugin-repository-password');
157756+
}
157757+
}
157758+
exports.PluginRepositoryConfig = PluginRepositoryConfig;
157750157759
class GradleExecutionConfig {
157751157760
getGradleVersion() {
157752157761
return core.getInput('gradle-version');
@@ -157984,6 +157993,9 @@ async function setup(config) {
157984157993
maybeExportVariable('DEPENDENCY_GRAPH_INCLUDE_PROJECTS', config.getIncludeProjects());
157985157994
maybeExportVariable('DEPENDENCY_GRAPH_EXCLUDE_CONFIGURATIONS', config.getExcludeConfigurations());
157986157995
maybeExportVariable('DEPENDENCY_GRAPH_INCLUDE_CONFIGURATIONS', config.getIncludeConfigurations());
157996+
maybeExportVariable('GRADLE_PLUGIN_REPOSITORY_URL', config.getPluginRepository().getUrl());
157997+
maybeExportVariable('GRADLE_PLUGIN_REPOSITORY_USERNAME', config.getPluginRepository().getUsername());
157998+
maybeExportVariable('GRADLE_PLUGIN_REPOSITORY_PASSWORD', config.getPluginRepository().getPassword());
157987157999
}
157988158000
function maybeExportVariable(variableName, value) {
157989158001
if (!process.env[variableName]) {
@@ -158353,9 +158365,9 @@ async function setup(config) {
158353158365
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_ENFORCE_URL', config.getDevelocityEnforceUrl());
158354158366
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_DEVELOCITY_PLUGIN_VERSION', config.getDevelocityPluginVersion());
158355158367
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_CCUD_PLUGIN_VERSION', config.getDevelocityCcudPluginVersion());
158356-
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION__PLUGIN_REPOSITORY_URL', config.getGradlePluginRepositoryUrl());
158357-
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION__PLUGIN_REPOSITORY_USERNAME', config.getGradlePluginRepositoryUsername());
158358-
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION__PLUGIN_REPOSITORY_PASSWORD', config.getGradlePluginRepositoryPassword());
158368+
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_PLUGIN_REPOSITORY_URL', config.getPluginRepository().getUrl());
158369+
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_PLUGIN_REPOSITORY_USERNAME', config.getPluginRepository().getUsername());
158370+
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_PLUGIN_REPOSITORY_PASSWORD', config.getPluginRepository().getPassword());
158359158371
if (config.getBuildScanPublishEnabled()) {
158360158372
maybeExportVariable('DEVELOCITY_INJECTION_ENABLED', 'true');
158361158373
maybeExportVariable('DEVELOCITY_INJECTION_DEVELOCITY_PLUGIN_VERSION', '4.0.2');

dist/setup-gradle/main/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/setup-gradle/post/index.js

Lines changed: 24 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -157471,7 +157471,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
157471157471
return (mod && mod.__esModule) ? mod : { "default": mod };
157472157472
};
157473157473
Object.defineProperty(exports, "__esModule", ({ value: true }));
157474-
exports.WrapperValidationConfig = exports.GradleExecutionConfig = exports.BuildScanConfig = exports.JobSummaryOption = exports.SummaryConfig = exports.CacheCleanupOption = exports.CacheConfig = exports.DependencyGraphOption = exports.DependencyGraphConfig = exports.ACTION_METADATA_DIR = void 0;
157474+
exports.WrapperValidationConfig = exports.GradleExecutionConfig = exports.PluginRepositoryConfig = exports.BuildScanConfig = exports.JobSummaryOption = exports.SummaryConfig = exports.CacheCleanupOption = exports.CacheConfig = exports.DependencyGraphOption = exports.DependencyGraphConfig = exports.ACTION_METADATA_DIR = void 0;
157475157475
exports.getJobMatrix = getJobMatrix;
157476157476
exports.getGithubToken = getGithubToken;
157477157477
exports.getWorkspaceDirectory = getWorkspaceDirectory;
@@ -157534,6 +157534,9 @@ class DependencyGraphConfig {
157534157534
getIncludeConfigurations() {
157535157535
return getOptionalInput('dependency-graph-include-configurations');
157536157536
}
157537+
getPluginRepository() {
157538+
return new PluginRepositoryConfig();
157539+
}
157537157540
static constructJobCorrelator(workflow, jobId, matrixJson) {
157538157541
const matrixString = this.describeMatrix(matrixJson);
157539157542
const label = matrixString ? `${workflow}-${jobId}-${matrixString}` : `${workflow}-${jobId}`;
@@ -157720,14 +157723,8 @@ class BuildScanConfig {
157720157723
getDevelocityCcudPluginVersion() {
157721157724
return core.getInput('develocity-ccud-plugin-version');
157722157725
}
157723-
getGradlePluginRepositoryUrl() {
157724-
return core.getInput('gradle-plugin-repository-url');
157725-
}
157726-
getGradlePluginRepositoryUsername() {
157727-
return core.getInput('gradle-plugin-repository-username');
157728-
}
157729-
getGradlePluginRepositoryPassword() {
157730-
return core.getInput('gradle-plugin-repository-password');
157726+
getPluginRepository() {
157727+
return new PluginRepositoryConfig();
157731157728
}
157732157729
verifyTermsOfUseAgreement() {
157733157730
if ((this.getBuildScanTermsOfUseUrl() !== 'https://gradle.com/terms-of-service' &&
@@ -157742,6 +157739,18 @@ class BuildScanConfig {
157742157739
exports.BuildScanConfig = BuildScanConfig;
157743157740
BuildScanConfig.DevelocityAccessKeyEnvVar = 'DEVELOCITY_ACCESS_KEY';
157744157741
BuildScanConfig.GradleEnterpriseAccessKeyEnvVar = 'GRADLE_ENTERPRISE_ACCESS_KEY';
157742+
class PluginRepositoryConfig {
157743+
getUrl() {
157744+
return getOptionalInput('gradle-plugin-repository-url');
157745+
}
157746+
getUsername() {
157747+
return getOptionalInput('gradle-plugin-repository-username');
157748+
}
157749+
getPassword() {
157750+
return getOptionalInput('gradle-plugin-repository-password');
157751+
}
157752+
}
157753+
exports.PluginRepositoryConfig = PluginRepositoryConfig;
157745157754
class GradleExecutionConfig {
157746157755
getGradleVersion() {
157747157756
return core.getInput('gradle-version');
@@ -157979,6 +157988,9 @@ async function setup(config) {
157979157988
maybeExportVariable('DEPENDENCY_GRAPH_INCLUDE_PROJECTS', config.getIncludeProjects());
157980157989
maybeExportVariable('DEPENDENCY_GRAPH_EXCLUDE_CONFIGURATIONS', config.getExcludeConfigurations());
157981157990
maybeExportVariable('DEPENDENCY_GRAPH_INCLUDE_CONFIGURATIONS', config.getIncludeConfigurations());
157991+
maybeExportVariable('GRADLE_PLUGIN_REPOSITORY_URL', config.getPluginRepository().getUrl());
157992+
maybeExportVariable('GRADLE_PLUGIN_REPOSITORY_USERNAME', config.getPluginRepository().getUsername());
157993+
maybeExportVariable('GRADLE_PLUGIN_REPOSITORY_PASSWORD', config.getPluginRepository().getPassword());
157982157994
}
157983157995
function maybeExportVariable(variableName, value) {
157984157996
if (!process.env[variableName]) {
@@ -158348,9 +158360,9 @@ async function setup(config) {
158348158360
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_ENFORCE_URL', config.getDevelocityEnforceUrl());
158349158361
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_DEVELOCITY_PLUGIN_VERSION', config.getDevelocityPluginVersion());
158350158362
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_CCUD_PLUGIN_VERSION', config.getDevelocityCcudPluginVersion());
158351-
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION__PLUGIN_REPOSITORY_URL', config.getGradlePluginRepositoryUrl());
158352-
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION__PLUGIN_REPOSITORY_USERNAME', config.getGradlePluginRepositoryUsername());
158353-
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION__PLUGIN_REPOSITORY_PASSWORD', config.getGradlePluginRepositoryPassword());
158363+
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_PLUGIN_REPOSITORY_URL', config.getPluginRepository().getUrl());
158364+
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_PLUGIN_REPOSITORY_USERNAME', config.getPluginRepository().getUsername());
158365+
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_PLUGIN_REPOSITORY_PASSWORD', config.getPluginRepository().getPassword());
158354158366
if (config.getBuildScanPublishEnabled()) {
158355158367
maybeExportVariable('DEVELOCITY_INJECTION_ENABLED', 'true');
158356158368
maybeExportVariable('DEVELOCITY_INJECTION_DEVELOCITY_PLUGIN_VERSION', '4.0.2');

dist/setup-gradle/post/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)