1
0
Fork 0

proper location of generated schemas

This commit is contained in:
xeviff 2023-02-22 23:46:46 +01:00
parent 083e33de9b
commit 0abb7cfe17
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ public class ClassGeneratorFromJson {
public void generateSchema (String url, String pckg, String rootClassName) throws IOException {
convertJsonToJavaClass(
new URL(url),
new File("."),
new File("./src/main/java"),
pckg,
rootClassName);
}