Project directories with multiple projects #5
-
When using multiple projects that have dependencies, eg ProjectB is executed and depends on ProjectA, what would we the correct way of accessing the project directory of projectA? |
Beta Was this translation helpful? Give feedback.
Answered by
iils-dkaiser
Jun 2, 2023
Replies: 1 comment
-
There are two ways of accessing a project and the project directory:
So if your executing projectB and want to access files from projectA, you could add an operation inside a rule in projectA like getProjectADirectory : String that returns project.projectDir. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
iils-dkaiser
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There are two ways of accessing a project and the project directory:
So if your executing projectB and want to access files from projectA, you could add an operation inside a rule in projectA like getProjectADirectory : String that returns project.projectDir.