From 0e7fcd21e5a79971998128cb0089411b1dd4d3ac Mon Sep 17 00:00:00 2001 From: Rene Krenn Date: Mon, 28 Jun 2021 11:13:49 +0200 Subject: [PATCH] TT#127355 initialize application versions earlier Change-Id: If0ed6cb84aeae2f442580ca541f3da9cb690020b (cherry picked from commit df98b0a7c3e0387934574d56d6d0bcba4e40d114) --- lib/NGCP/BulkProcessor/Projects/ETL/Customer/process.pl | 4 +++- lib/NGCP/BulkProcessor/Projects/Massive/Generator/process.pl | 2 ++ .../Projects/Massive/RegistrationMonitoring/process.pl | 2 ++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/NGCP/BulkProcessor/Projects/ETL/Customer/process.pl b/lib/NGCP/BulkProcessor/Projects/ETL/Customer/process.pl index 59e96fe..1299677 100644 --- a/lib/NGCP/BulkProcessor/Projects/ETL/Customer/process.pl +++ b/lib/NGCP/BulkProcessor/Projects/ETL/Customer/process.pl @@ -2,7 +2,9 @@ use strict; ## no critic -our $VERSION = "0.0"; +BEGIN { +our $VERSION = '0.0'; +} use File::Basename; use Cwd; diff --git a/lib/NGCP/BulkProcessor/Projects/Massive/Generator/process.pl b/lib/NGCP/BulkProcessor/Projects/Massive/Generator/process.pl index 3d7e961..504b625 100755 --- a/lib/NGCP/BulkProcessor/Projects/Massive/Generator/process.pl +++ b/lib/NGCP/BulkProcessor/Projects/Massive/Generator/process.pl @@ -4,7 +4,9 @@ use strict; ## no critic +BEGIN { our $VERSION = "0.0"; +} use File::Basename; use Cwd; diff --git a/lib/NGCP/BulkProcessor/Projects/Massive/RegistrationMonitoring/process.pl b/lib/NGCP/BulkProcessor/Projects/Massive/RegistrationMonitoring/process.pl index c4adb00..446ddf2 100644 --- a/lib/NGCP/BulkProcessor/Projects/Massive/RegistrationMonitoring/process.pl +++ b/lib/NGCP/BulkProcessor/Projects/Massive/RegistrationMonitoring/process.pl @@ -2,7 +2,9 @@ use strict; ## no critic +BEGIN { our $VERSION = "0.0"; +} use File::Basename; use Cwd;