This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import { Box, Avatar, Typography, Stack, Chip, Select, MenuItem, FormControl } from '@mui/material'; | |
import { Description as DescriptionIcon } from '@mui/icons-material'; | |
interface SampleFormHeaderProps { | |
title?: string; | |
subtitle?: string; | |
formCode?: string; | |
trxId?: string; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// app/mock-response/[code]/route.ts | |
import { NextRequest, NextResponse } from 'next/server' | |
// Configure edge runtime | |
export const runtime = 'edge' | |
// Mock responses stored in memory - update these as needed | |
const mockResponses: Record<string, any> = { | |
PEED: { | |
status: 'success', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
To make the Quarkus dependency tree command verbose, you can pass additional parameters to the Maven wrapper command. Try using: | |
``` | |
./mvnw quarkus:dependency-tree -Dquarkus.dependency-tree.verbose=true | |
``` | |
This will show you more detailed information including potentially conflicting dependencies and why they might be excluded. | |
If you specifically want to see information about log4j dependencies, you can add a focus parameter: |