java - how to access main/resources of a maven dependency lib? -


got maven submodule project including set of dlls in main\resoursces. how can access other module project ?

the maven profile detects guest os , download dlls submodule project similar resolving maven dependency differently if jvm in use x86 or x64?

you can introduce resource in pom.xml file

<project>     <build>       <resources>          <resource>              <directory>${submodule_path}</directory>              <includes>                 <include>*.dll</include>              </includes>              <targetpath/>          </resource>       </resources>     </build>      </project> 

other option use "build-helper-maven-plugin" , introduce there source want.


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -