Cabinet approves $97 million financing agreement for National Water Carrier Project

JT file
JT file

AMMAN — The Cabinet, during a session chaired by Prime Minister Jafar Hassan on Monday, approved an agreement with the French Development Agency to help finance the National Water Carrier Project, with an initial contribution of $97 million, as the government moves to complete the mega project’s financial closure and begin implementation.

The approval marks another step towards advancing the Kingdom’s largest water infrastructure project, which is expected to cost approximately $5.8 billion, according to a Prime Ministry statement.

The government signed the project’s final technical and legal agreement in April, paving the way for the completion of financing arrangements and the start of construction works.

The National Water Carrier Project is considered the first project of its scale in Jordan’s history.

It will involve the desalination of 300 million cubic metres of seawater annually, the construction of pumping systems capable of transporting water to elevations of up to 1,100 metres above sea level, and a pipeline network extending approximately 450 kilometres.

The project will rely heavily on renewable energy and advanced environmentally friendly technologies. Upon completion, it is expected to meet around 40 per cent of Jordan’s drinking water needs, representing a major boost to the country’s water security efforts.

The Cabinet also approved the validating reasons for the 2026 amendments to the Natural Resources Law, to be referred to the Legislation and Opinion Bureau for review and the completion of legal procedures.

The proposed amendments are part of efforts to modernise investment legislation and create a more attractive environment for investors in the natural resources sector, the statement said.

They are also aligned with Jordan’s Economic Modernisation Vision, which identifies mining as a key driver of “high-value industries.”

The statement said that the draft legislation was developed following consultations with public and private sector partners and aims to bring Jordan’s regulatory framework in line with the best international practices.

The amendments are designed to encourage investment in petroleum, natural gas, oil shale, critical minerals, and other natural resources by allowing investors to enter into production-sharing agreements or mining agreements once the economic feasibility of projects has been established, according to the statement.

The proposed changes would also expand investment incentives, including exemptions aimed at encouraging exploration activities, while simplifying procedures for allocating land for natural resource projects, it said.

Under the draft law, the Ministry of Energy and Mineral Resources would continue to oversee policy development for the natural resources sector and establish mechanisms for the exploitation of petroleum, natural gas, oil shale, and critical minerals.

The legislation also proposes the establishment of an exploration and community development support fund, which would support mineral exploration projects across Jordan, help update geological and petroleum data maintained by the ministry, and contribute to local communities hosting mining, petroleum, and oil shale projects through infrastructure development and job creation, the statement said.

.col-lg-12.second .opinion-widget{border-top:1px solid #D0D0D0;} #widget_1623 .opinions-title {font-size:32px;} #widget_1623 .opinions-title a{font-size:32px;} .first-author{ background-color:#ecedef; } .first-opinion-author-name{ background-color:white; width:max-content; padding:5px; }
.epaper-separator{ height: 1px; width: 100%; background-color: #D0D0D0; margin: 15px 0; }

Today’s Paper

.related-articles .article-widget-sm .article-title{font-size:16px;-webkit-line-clamp:3;} .related-articles .layout-ratio{padding-bottom:55%;}
.alert-success { color :#A3656F ; } .alert-danger { color : red ; } .footer { font-family:Myriad Pro,Arial; } .newspaper-footer{ visibility:hidden; } .socialFixOuter { position: fixed; top: 50%; margin-top: 40px; right: 0; transition: .2s; z-index: 20; height: 217px; width: 40px; } .socialFix { height: 30px; width: 30px; display: block; position: relative; cursor: pointer; background-size: 18px 18px; transition: .2s; background-position: center; background-repeat: no-repeat; border-radius: 2px; margin-top: 1px; } .socialFix:hover { width: 40px; margin-left: -10px; } .app-badge-img { height: 36px; width: auto; } @media (max-width: 768px) { .app-badge-img { height: 32px; } .app-badges { justify-content: center !important; } }
document.addEventListener("DOMContentLoaded", function () { const socialFix = document.querySelector(".socialFixOuter"); if (!socialFix) return; let firstInteraction = false; let hideTimeout = null; function checkMobileScreen() { if (window.innerWidth < 768) { socialFix.style.display = "none"; } else { socialFix.style.display = "block"; } } checkMobileScreen(); window.addEventListener("resize", checkMobileScreen); function handleFirstInteraction() { if (firstInteraction) return; if (window.innerWidth < 768) return; firstInteraction = true; socialFix.style.right = "-25px"; } socialFix.addEventListener("mouseenter", function () { if (window.innerWidth < 768) return; if (hideTimeout) clearTimeout(hideTimeout); socialFix.style.right = "0"; }); socialFix.addEventListener("mouseleave", function () { if (window.innerWidth < 768) return; if (hideTimeout) clearTimeout(hideTimeout); hideTimeout = setTimeout(() => { socialFix.style.right = "-25px"; }, 500); }); ["click", "touchstart"].forEach((evt) => { socialFix.addEventListener(evt, handleFirstInteraction); }); }); function validateEmail(email) { if (email.length > 255) return false; const emailRegex = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/; if (!emailRegex.test(email)) return false; if (email.includes('..') || email.startsWith('.') || email.endsWith('.')) return false; return true; } function sanitizeInput(input) { input = input.replace(/<[^>]*>/g, ''); input = input.replace(/javascript:/gi, ''); input = input.replace(/on\w+\s*=/gi, ''); input = input.replace(/[<>"'&(){}[\]]/g, ''); return input.trim(); } document.addEventListener('DOMContentLoaded', function () { function showModal(message, type) { const messageContainer = document.getElementById("messageContainerFooter"); messageContainer.textContent = message; messageContainer.className = `alert alert-${type} mt-3`; messageContainer.classList.remove("d-none"); setTimeout(() => { messageContainer.classList.add("d-none"); }, 5000); } document.getElementById("emailFormFooter").addEventListener("submit", function(event) { event.preventDefault(); const emailInput = document.getElementById("emailFooter"); const email = sanitizeInput(emailInput.value.trim()); if (!validateEmail(email)) { showModal('Invalid email format', 'danger'); return; } const formData = new FormData(); formData.append('email', email); fetch('/subscribeNewsletter', { method: "POST", body: formData, headers: { "Accept": "application/json", "X-Requested-With": "XMLHttpRequest" } }) .then(response => { if (!response.ok) { showModal("Error submitting email. Try again.", 'danger'); } return response.json(); }) .then(data => { showModal(data.message, 'success'); }) .catch(error => { showModal("Error submitting email. Try again.", 'danger'); }); }); });