Federal Contractor

MARINETTE MARINE CORPORATION Federal Contract Obligations (Last 5 Years)

FPDS procurement summary for MARINETTE MARINE CORPORATION (CAGE 98042, UEI UZWBWJN3NLP3) covering obligations, awards, agencies, NAICS codes, and annual trends over the last 5 years.

MARINETTE MARINE CORPORATION recorded $1.913 billion in obligated federal contract actions across 162 awards in the last 5 years, with an average action value of $11.81 million. Activity is concentrated in the Department of the Navy and in NAICS 336611, Ship Building and Repairing.

Generated at 03/21/2026

Analysis period: Last 5 years

Annual totals include both positive and negative obligations, so the year-by-year figures may not sum to a simple cumulative trend.

CAGE Code
98042
UEI
UZWBWJN3NLP3
Total Obligated
1.91 billion
1,913,469,853.57
Award Actions
162
Average Action Value
11,811,542.30

About MARINETTE MARINE CORPORATION federal contract activity

MARINETTE MARINE CORPORATION recorded 162 awards and $1.91 billion in obligated funding over the last 5 years, with an average award value of $11.81 million. The profile is heavily concentrated in large maritime work, as reflected by both the high dollar volume and the award mix.

Agency mix and customer concentration

The Department of the Navy dominates the account, accounting for $1.86 billion across 109 awards and representing the clear center of procurement activity. USSOCOM is a distant secondary customer at $50.14 million across 6 awards, while the U.S. Coast Guard shows 47 awards but a net negative obligated total of $724.42 thousand, indicating deobligations or downward adjustments in the period.

Industry profile based on NAICS activity

Contracting is overwhelmingly concentrated in NAICS 336611, Ship Building and Repairing, which accounts for $1.91 billion across 101 awards. NAICS 336612, Boat Building, adds a much smaller $2.78 million across 60 awards, while NAICS 334511 appears only once for $1, indicating an immaterial non-core line of business in this window.

Annual contract trend over the analysis window

Annual obligations were strongest in 2024 at $1.14 billion, following $630.10 million in 2023 and $637.22 million in 2022. The 2025 figure is negative at $1.05 billion, which materially offsets prior-year totals and suggests significant deobligations, contract closeout activity, or other downward funding adjustments rather than new net growth.

How to interpret this page

This summary is based on FPDS award records for the vendor CAGE 98042 and UEI UZWBWJN3NLP3 over the last 5 years. Obligated values are presented as recorded in the dataset and may include negative amounts from deobligations or modifications; agency, NAICS, and annual figures are aggregated from the same award universe.

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 = '98042'
        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
1700 DEPT OF THE NAVY 1,864,049,996.49 1.86 billion 109
97ZS U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) 50,144,274.00 50.14 million 6
7008 U.S. COAST GUARD -724,416.92 -724.42 thousand 47

Insight

Over the last 5 years, MARINETTE MARINE CORPORATION received $1.91 billion across 162 awards, with an average award value of $11.81 million. Obligations are highly concentrated in the DEPT OF THE NAVY, which accounts for $1.86 billion and 109 awards, indicating Navy-dominant revenue concentration. U.S. SPECIAL OPERATIONS COMMAND contributed a much smaller $50.14 million across 6 awards, while U.S. COAST GUARD shows a net negative obligation of $724.42 thousand across 47 awards, indicating modest offsetting adjustments within the period.

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 = '98042'
        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 1,910,686,069.49 1.91 billion 101
336612 BOAT BUILDING 2,782,784.08 2.78 million 60
334511 SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING 1,000.00 1.00 thousand 1

Insight

Over the last 5 years, MARINETTE MARINE CORPORATION’s obligations are highly concentrated in NAICS 336611, Ship Building and Repairing, which accounts for about $1.91 billion of the total $1.91 billion obligated and 101 of 162 awards. NAICS 336612, Boat Building, is a distant second with $2.78 million across 60 awards, indicating a much smaller but recurring share of activity. A single $1,000 award under NAICS 334511 is immaterial relative to the firm’s overall federal spend.

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 = '98042'
        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 -1,052,395,163.90 -1.05 billion 22
2024 1,136,129,799.64 1.14 billion 31
2023 630,103,640.00 630.10 million 22
2022 637,223,967.78 637.22 million 21
2021 562,407,610.05 562.41 million 66

Insight

MARINETTE MARINE CORPORATION’s obligations over the last 5 years are concentrated in a small number of large awards, with 162 awards totaling $1.91 billion and an average award value of $11.8 million. Annual obligations were positive and relatively steady from 2021 through 2024, ranging from $562.4 million to $1.14 billion, before a net negative obligation of $1.05 billion in 2025. Award volume peaked in 2021 at 66 awards, then fell to the low 20s in subsequent years, indicating a shift toward fewer, higher-value actions.

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.