Federal Contractor

GENERAL DYNAMICS OTS (WILKES BARRE), LLC Federal Contract Obligations (Last 5 Years)

GENERAL DYNAMICS OTS (WILKES BARRE), LLC recorded 301 award actions totaling $2,462,946,348.66 over the last 5 years, with most obligations from the Department of the Army.

GENERAL DYNAMICS OTS (WILKES BARRE), LLC, CAGE 99938, UEI V1TVADBWD4E9, received $2.46 billion across 301 award actions in the last 5 years. Department of the Army awards account for nearly all obligations, led by ammunition manufacturing and facilities support services work.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals reflect the selected 5-year analysis window and may include award actions with zero obligated value.

CAGE Code
99938
UEI
V1TVADBWD4E9
Total Obligated
2.46 billion
2,462,946,348.66
Award Actions
301
Average Action Value
8,182,546.00

About GENERAL DYNAMICS OTS (WILKES BARRE), LLC federal contract activity

GENERAL DYNAMICS OTS (WILKES BARRE), LLC recorded $2.46 billion in obligated federal awards across 301 actions over the last 5 years, with an average award value of about $8.18 million. The activity profile indicates a high-volume supplier concentrated in defense-related procurement, with most obligations flowing through a single department.

Agency mix and customer concentration

The DEPT OF THE ARMY accounted for essentially all obligated dollars, with $2.46 billion across 298 awards, making it the dominant customer by both value and volume. The DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears only as a minor award-count contributor with 3 awards and no obligated dollars reported, suggesting administrative or oversight activity rather than program funding.

Industry profile based on NAICS activity

The vendor’s obligations are concentrated in AMMUNITION (EXCEPT SMALL ARMS) MANUFACTURING under NAICS 332993, which represents $1.41 billion across 177 awards. FACILITIES SUPPORT SERVICES under NAICS 561210 is the second major line of business at $1.05 billion across 123 awards, while NAICS 332995 appears only once with no obligated dollars, indicating a narrow tail of additional activity.

Annual contract trend over the analysis window

Annual obligations were strongest in 2023 at $776.03 million across 80 awards, followed by 2025 at $601.41 million across 52 awards and 2024 at $568.00 million across 83 awards. The pattern shows a pronounced increase from 2021 through 2023, a dip in 2024 relative to the prior peak, and continued elevated funding in 2025.

How to interpret this page

This summary is based on FPDS award records associated with CAGE 99938 and UEI V1TVADBWD4E9 over the last 5 years. Obligated dollars, award counts, agency mix, NAICS mix, and annual trends reflect the provided aggregated metrics; totals may vary from underlying transaction-level views due to reporting timing, modifications, and FPDS data updates.

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 = '99938'
        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
2100 DEPT OF THE ARMY 2,462,946,348.66 2.46 billion 298
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 3

Insight

Over the last 5 years, GENERAL DYNAMICS OTS (WILKES BARRE), LLC’s obligations are almost entirely concentrated in the Department of the Army, which accounts for $2.46 billion across 298 awards. DCMA appears only as a minor awarding entity by count, with 3 awards and no obligated dollars. This indicates a highly concentrated agency profile with limited diversification across buying activities.

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 = '99938'
        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
332993 AMMUNITION (EXCEPT SMALL ARMS) MANUFACTURING 1,411,932,813.50 1.41 billion 177
561210 FACILITIES SUPPORT SERVICES 1,051,013,535.16 1.05 billion 123
332995 OTHER ORDNANCE AND ACCESSORIES MANUFACTURING 0.00 0.00 1

Insight

Over the last 5 years, GENERAL DYNAMICS OTS (WILKES BARRE), LLC received $2.46 billion across 301 awards, with obligations concentrated in two NAICS codes. NAICS 332993, Ammunition (Except Small Arms) Manufacturing, accounts for $1.41 billion and 177 awards, while NAICS 561210, Facilities Support Services, accounts for $1.05 billion and 123 awards, indicating a near-even split between manufacturing and support services activity. NAICS 332995 appears only once and with no obligated value, suggesting it is not a material driver of obligated spend in this period.

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 = '99938'
        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 601,407,350.67 601.41 million 52
2024 568,003,423.37 568.00 million 83
2023 776,027,085.53 776.03 million 80
2022 302,979,852.27 302.98 million 54
2021 214,528,636.82 214.53 million 32

Insight

Over the last 5 years, GENERAL DYNAMICS OTS (WILKES BARRE), LLC obligated $2.46 billion across 301 awards, averaging about $8.18 million per award. Annual obligations were highest in 2023 at $776.03 million, followed by 2025 at $601.41 million and 2024 at $568.00 million, indicating that obligations have been concentrated in the most recent three years. Award volume peaked in 2024 at 83 awards, while 2021 remained the lowest year at $214.53 million and 32 awards, showing a clear upward shift in both funding and transaction activity over the 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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.