Federal Contractor

EASTERN SHIPBUILDING GROUP, INC. Federal Contract Obligations (Last 10 Years)

Federal procurement profile for EASTERN SHIPBUILDING GROUP, INC. (CAGE 1PPU2, UEI XJTAAHL58NB6), showing 10 years of contract obligations and award activity.

Across the last 10 years, EASTERN SHIPBUILDING GROUP, INC. recorded $1,636,555,457.79 in obligated federal awards across 119 actions, with an average action value of $13,752,566.87. The U.S. Coast Guard accounted for most of the value at $1.38 billion, followed by the Department of the Army at $258.51 million.

Generated at 03/21/2026

Analysis period: Last 10 years

Annual totals reflect obligated amounts by fiscal year and may include negative values from deobligations or award adjustments.

CAGE Code
1PPU2
UEI
XJTAAHL58NB6
Total Obligated
1.64 billion
1,636,555,457.79
Award Actions
119
Average Action Value
13,752,566.87

About EASTERN SHIPBUILDING GROUP, INC. federal contract activity

EASTERN SHIPBUILDING GROUP, INC. (CAGE 1PPU2, UEI XJTAAHL58NB6) recorded $1.64 billion in obligated federal spending across 119 awards over the last 10 years, for an average award value of $13.75 million. The profile is concentrated in shipbuilding-related work and reflects a sustained role as a naval and maritime contractor.

Agency mix and customer concentration

The U.S. Coast Guard accounts for the clear majority of obligations at $1.38 billion across 106 awards, indicating that this vendor’s federal activity is highly concentrated with a single customer. The Department of the Army is a secondary source of obligations at $258.51 million across 11 awards, while the Department of the Navy appears only minimally at $98.55 thousand across 2 awards.

Industry profile based on NAICS activity

All reported obligations fall under NAICS 336611, Ship Building and Repairing, totaling $1.64 billion across 119 awards. This indicates a fully concentrated industrial base profile with no material diversification beyond ship construction and repair.

Annual contract trend over the analysis window

Annual obligations were positive from 2021 through 2024, with the strongest year in the provided window at $418.25 million in 2023 and another elevated year in 2021 at $388.37 million. The 2025 figure is negative at -$365.84 million across 16 awards, which suggests substantial deobligations, adjustments, or contract closeout activity rather than new award growth.

How to interpret this page

This summary is based on FPDS-observed obligations for the last 10 years and aggregates awards by vendor identifiers, agency, NAICS, and fiscal year. Obligated amounts may include modifications, deobligations, and other contract adjustments, so annual totals can be negative even when award counts remain positive.

Top Agencies

SELECT
    agency_id,
    agency_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
        anyHeavy(content__award__purchaserInformation__contractingOfficeAgencyID__name) AS agency_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '1PPU2'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY agency_id
)
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Award Actions
7008 U.S. COAST GUARD 1,377,950,633.10 1.38 billion 106
2100 DEPT OF THE ARMY 258,506,273.63 258.51 million 11
1700 DEPT OF THE NAVY 98,551.06 98.55 thousand 2

Insight

Over the last 10 years, EASTERN SHIPBUILDING GROUP, INC. has $1.64 billion in obligated awards across 119 actions, with an average award value of $13.75 million. The U.S. Coast Guard accounts for the vast majority of this activity, at $1.38 billion across 106 awards, indicating a strong concentration of spend with a single agency. The Department of the Army is a distant second at $258.51 million and 11 awards, while Department of the Navy obligations are negligible at $98.55 thousand across 2 awards.

Top NAICS

SELECT
    naics_code,
    naics_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
        anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '1PPU2'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY naics_code
)
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Award Actions
336611 SHIP BUILDING AND REPAIRING 1,636,555,457.79 1.64 billion 119

Insight

Over the last 10 years, EASTERN SHIPBUILDING GROUP, INC. (CAGE 1PPU2) shows complete NAICS concentration in 336611, Ship Building and Repairing. All 119 awards and the full $1.64 billion in obligated value are captured under this single NAICS, indicating a highly specialized contract profile with no observed diversification across other industry codes in the provided period. The average award value of $13.75 million is consistent with a recurring shipbuilding and repair workload rather than a broad multi-industry federal spend pattern.

Annual Trend

SELECT
    year,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '1PPU2'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 -365,837,945.42 -365.84 million 16
2024 131,699,987.02 131.70 million 14
2023 418,247,649.18 418.25 million 15
2022 85,588,007.23 85.59 million 9
2021 388,367,322.92 388.37 million 10
2020 411,450,742.74 411.45 million 23
2019 91,839,767.71 91.84 million 7
2018 322,103,407.00 322.10 million 8
2017 42,698,893.41 42.70 million 10
2016 110,397,626.00 110.40 million 7

Insight

EASTERN SHIPBUILDING GROUP, INC. (CAGE 1PPU2) recorded $1.64 billion in obligations across 119 awards over the last 10 years, with an average award value of $13.75 million. Obligations were unevenly distributed, with several high-value years—2020 ($411.45 million), 2021 ($388.37 million), and 2023 ($418.25 million)—driving a large share of total volume. Award activity was highest in 2020 (23 awards) and remained moderate in most other years, while 2025 shows negative obligations of $365.84 million across 16 awards, indicating a significant downward adjustment in that period.

Use FPDS Query for deeper contractor analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contractor analysis across buying agencies, NAICS, and annual trends.

Continue from this last 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.