It seems that Robot Framework Maven Plugin is not focused on multi module and multi level maven projects. Imagine the following case:
-- Module A
---- Module A1 (contains Test1.txt)
---- Module A2 (contains Test2.txt)
-- Module B (contains resources.txt and library.jar)
I want to put my resources and libraries files in module B so that they can be used all over my maven project (module A1 and A2, in this case). I should be able to define Module B as a dependency of Modules A1 and A2, and use it resources.
Is this possible? I always get the message that resources.txt doesn't exist. I don't want to use relative paths, because the project configuration may change over time.
The same problem applies to libraries, but I can overcome it by installing library.jar file in my maven repository.
Regarding to resources, I can't do that, which is a major problem.
Is this possible? If not, please consider adding the support for multi module and multi level maven projects.
Thank you very much
It seems that Robot Framework Maven Plugin is not focused on multi module and multi level maven projects. Imagine the following case:
-- Module A
---- Module A1 (contains Test1.txt)
---- Module A2 (contains Test2.txt)
-- Module B (contains resources.txt and library.jar)
I want to put my resources and libraries files in module B so that they can be used all over my maven project (module A1 and A2, in this case). I should be able to define Module B as a dependency of Modules A1 and A2, and use it resources.
Is this possible? I always get the message that resources.txt doesn't exist. I don't want to use relative paths, because the project configuration may change over time.
The same problem applies to libraries, but I can overcome it by installing library.jar file in my maven repository.
Regarding to resources, I can't do that, which is a major problem.
Is this possible? If not, please consider adding the support for multi module and multi level maven projects.
Thank you very much