EASTERN SHIPBUILDING GROUP, INC. recorded 64 award actions totaling $658,065,020.93 in federal obligations over the last 5 years, with an average action value of $10,282,265.95. Procurement activity was concentrated in NAICS 336611, Ship Building and Repairing, and primarily involved the U.S. Coast Guard and the Department of the Army.
Federal Contractor
EASTERN SHIPBUILDING GROUP, INC. Federal Contract Obligations (Last 5 Years)
Federal procurement profile for EASTERN SHIPBUILDING GROUP, INC. (CAGE 1PPU2, UEI XJTAAHL58NB6) covering obligations and awards over the last 5 years.
Annual totals include a negative obligation entry in 2025, so year-to-year comparisons should be read in the context of obligation adjustments.
About EASTERN SHIPBUILDING GROUP, INC. federal contract activity
EASTERN SHIPBUILDING GROUP, INC. recorded 64 FPDS awards totaling 658.07 million over the last 5 years, with an average award value of 10.28 million. The vendor is identified by CAGE 1PPU2 and UEI XJTAAHL58NB6. Its activity is concentrated in shipbuilding and repair work, indicating a focused federal contracting profile.
Agency mix and customer concentration
Obligations are concentrated in two agencies: the U.S. COAST GUARD accounts for 399.56 million across 53 awards, while the DEPT OF THE ARMY accounts for 258.51 million across 11 awards. The Coast Guard represents the dominant customer base by both dollars and transaction count. Army obligations are smaller in count but material in value, suggesting fewer, higher-dollar engagements.
Industry profile based on NAICS activity
All reported obligations fall under NAICS 336611, SHIP BUILDING AND REPAIRING, totaling 658.07 million across 64 awards. This indicates a highly specialized contract portfolio with no diversification across other NAICS codes in the observed period. The vendor’s federal work is therefore tightly aligned to ship construction and repair requirements.
Annual contract trend over the analysis window
Annual obligations were strongest in 2023 at 418.25 million and remained elevated in 2021 at 388.37 million, before declining to 85.59 million in 2022 and recovering to 131.70 million in 2024. The 2025 figure is negative 365.84 million, which may reflect deobligations, closeout adjustments, or other contract modifications rather than new award activity alone. Overall, the series shows substantial year-to-year volatility despite a concentrated long-term award base.
How to interpret this page
This summary uses FPDS data for the last 5 years and aggregates reported obligated dollars and award counts tied to the vendor’s CAGE code 1PPU2 and UEI XJTAAHL58NB6. Agency, NAICS, and annual trend views reflect the provided totals and do not infer performance, size status, or contract type beyond the supplied data. Negative obligated amounts are presented as reported and may indicate downward adjustments to prior awards.
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 5 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 | 399,558,747.30 | 399.56 million | 53 |
| 2100 | DEPT OF THE ARMY | 258,506,273.63 | 258.51 million | 11 |
Insight
Over the last 5 years, EASTERN SHIPBUILDING GROUP, INC. has been highly concentrated in two agencies, with all $658.07 million in obligations split between the U.S. Coast Guard and the Department of the Army. The U.S. Coast Guard is the primary customer, accounting for $399.56 million across 53 awards, or about 60.7% of total obligations. The Department of the Army represents the remaining $258.51 million across 11 awards, indicating a more limited but still substantial second-agency relationship.
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 5 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 | 658,065,020.93 | 658.07 million | 64 |
Insight
Over the last 5 years, EASTERN SHIPBUILDING GROUP, INC. (CAGE 1PPU2) shows complete NAICS concentration in 336611, Ship Building and Repairing. All 64 awards and the full $658.07 million in obligated value are attributed to this single NAICS, indicating no diversification across other industry codes in the observed period. The average award value is $10.28 million, suggesting recurring moderate-to-large contract activity within a highly focused shipbuilding portfolio.
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 5 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 |
Insight
Over the last 5 years, EASTERN SHIPBUILDING GROUP, INC. recorded $658.07 million in obligated awards across 64 actions, averaging $10.28 million per award. Obligations were concentrated in 2021 and 2023, which together account for $806.62 million in positive obligations before the 2025 deobligation, indicating material year-to-year volatility rather than a steady run rate. Annual award volume remained relatively stable at 9 to 16 awards per year, but obligation value varied sharply, with 2025 reflecting a net negative obligation of $365.84 million.
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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.