Alejandro Alves
unread,Aug 18, 2011, 4:59:13 AM8/18/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to maven-external-dependency-plugin
Hello,
I am trying to use a local repository for some artifacts, the problem
is that for some reason it does not use the path I configure. This is
the pom:
<groupId>com.savage7.maven.plugins</groupId>
<artifactId>maven-external-dependency-plugin</artifactId>
<version>0.4</version>
<inherited>false</inherited>
<configuration>
<stagingDirectory>
X:/Intrasoft/04 - Technical/04 - Applications/RCD-
REC/RCD-REC-setup/local/repository/
</stagingDirectory>
<createChecksum>true</createChecksum>
<skipChecksumVerification>false</
skipChecksumVerification>
<force>false</force>
<artifactItems>
<artifactItem>
<groupId>acegi-security</groupId>
<artifactId>jars</artifactId>
<version>1.0.0-RC2</version>
<packaging>jar</packaging>
<downloadUrl>
file:///X:/Intrasoft/04 - Technical/04 -
Applications/RCD-REC/RCD-REC-setup/local/repository/acegi-security/
jars/acegi-security-1.0.0-RC2.jar
</downloadUrl>
</artifactItem>
</artifactItems>
</configuration>
So I will expect that the library was taken from X:/Intrasoft/04 -
Technical/04 - Applications/RCD-REC/RCD-REC-setup/local/repository/
acegi-security/jars/acegi-security-1.0.0-RC2.jar but when I run it, I
get this exception:
Unable to install external dependency 'jars'; file not found in
staging path: X:\Intrasoft\04 - Technical\04 - Applications\RCD-REC
\RCD-REC-setup\local\repository\jars-1.0.0-RC2.jar
why isn´t it taking it from the right place??
Thanks in advance