Hi,
once started with maven I setup an internal repository in a directory, where
I have a network link that allows direct access.
Here's the profiles section of my settings.xml:
<profile>
<id>development</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<repositories>
<repository>
<id>danet-internal-repository</id>
<name>our internal development repository</name>
<url>file:\\Domain-at\files\public\maven-repository\repository</url>
<layout>default</layout>
</repository>
</repositories>
</profile>
Even if I set -P parameter for maven, it cannot find the internal
repository, but the central one, only.
Thanks in advance for any assistance .....
Günther