Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Convention for storing XSD file in a Java Eclipse project

Tags:

java

eclipse

xsd

What is the conventional folder for storing .xsd files in a Java Eclipse project? For example, .jars are kept in /lib. Where would an .xsd file be stored?

like image 358
Clint Avatar asked Jun 23 '15 22:06

Clint


1 Answers

I generally put my XML schemas in /src/main/resources/XSD but as you can see from the JAXB project, they are often placed in deep source folders with the most relevant package.

like image 53
vallismortis Avatar answered Oct 17 '22 19:10

vallismortis