Replies: 3 comments 9 replies
-
Are there always three items in your package path? If yes, you can create directories like this:
|
Beta Was this translation helpful? Give feedback.
3 replies
-
I'm not sure if this will work, but try this directory name:
|
Beta Was this translation helpful? Give feedback.
5 replies
-
I have used copier for Java project templating and solved it like this, maybe this helps. I created a helper question in the copier.yml
Create the folder structure src/main/java and and add a folder called {[package_folder}}. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In java, the directory structure matches the package. If there's a package
com.google.gson
then the directory structure for this package may besrc/main/java/com/google/gson
. Is it possible to create this directory structure with something likesrc/main/java/{{package}}
?Beta Was this translation helpful? Give feedback.
All reactions