I'm trying to unmarshall my xsd file and generate the classes using mvn clean install. I'm facing the below error :
[ERROR] /Users/a884268/codebase/card-limits/generated/printnet-generated/target/generated-sources/xjc/nl/rabobank/gict/mcv/productservices/card/limits/printnet/generated/Delivery.java:[33080,75] error while writing nl.rabobank.gict.mcv.productservices.card.limits.printnet.generated.Delivery.Document.OrmaContent.ShoppingBasket.PropositionOrders.PropositionOrder.PropositionOrderLines.PropositionOrderLine.ProductConfiguration.PaymentAccountConfig.PaymentAccountArrangement.PaymentAccountArrangementConfig.Ascription.Parties.Party.CorrespondenceAddress: /Users/a884268/codebase/card-limits/generated/printnet-generated/target/classes/nl/rabobank/gict/mcv/productservices/card/limits/printnet/generated/Delivery$Document$OrmaContent$ShoppingBasket$PropositionOrders$PropositionOrder$PropositionOrderLines$PropositionOrderLine$ProductConfiguration$PaymentAccountConfig$PaymentAccountArrangement$PaymentAccountArrangementConfig$Ascription$Parties$Party$CorrespondenceAddress.class: File name too long
Is there any way I can increase the file name character length?
What is the alternative way to solve the problem?
Thanks.
This is the xsd i'm trying to unmarshall : https://www.codepile.net/pile/453YnZkg Not able to post the full xsd here because of character limit of 30000.
If I comment the 'orma-content' type...I'm able to unmarshall and generate the classes successfully.