Hi guys,
I'm trying to include some jar files located in my C: drive into my build.
I've declared the dependencies on the jar files like this:
...
<dependency>
<groupId>blazeadvisor65</groupId>
<artifactId>license.jar</artifactId>
<version>LATEST</version>
<scope>system</scope>
<systemPath>${blazeadvisor65.home}/lib/license.jar</systemPath>
</dependency>
...
The problem is, the project builds successfully but doesn't include the jar file into the final .ear.
Should I take a copy of the local jar files and place them in the ...\.m2\repository?.... I've had a look in there and all of the jar files in there have a ".pom" file...would I have to create one of these too?
Btw, I'm new to
Maven, and to this forum, feel free to give me any other advice...especially if I've repeated this post or anything.
Thanks heaps.