I want to create a specific custom file structure for developping and I want to know if it could be done with maven.
It is important to mention that i am using c++ for programming language and the Maven-nar-plugin
I want to be able run a command like : mvn dependency:resolve and the required librairies would go in the folder Librairies. That way all i would have to do is link the include folder of a library to my project in Visual Studio.
I dont want to compile with maven I just want to use it's dependency manager
I know you can change the SourceDirectory but can you change where the Librairies will be installed ?
Workspace
|
|-- Project1
| |-- pom.xml
|
|-- Project2
| |-- pom.xml
|
|-- Librairies
|-- ExempleLib-V-2.0
| |-- Include
| |-- lib
|
|-- ExempleLib-V-3.1