Hi,
As I mentioned in my first post, try to add this in your setting.xml
<mirrors>
<mirror>
<id>Corporate Proxy</id>
<mirrorOf>central</mirrorOf>
<name>my corporate repository</name>
<url>url to your maven 2 proxy</url>
</mirror>
</mirrors>
This indicates to maven 2 to look at your maven 2 proxy instead of repo1.
Normally your proxy is configure in order to look at maven 2 repository if
needed
It also depends on how your maven 2 proxy is configure. In your case, it
seems that
you also have to add your corporate repository in your pom.xml in order to
find your
pom corporate (I assume that you pom corporate is in your inhouse
repository) :
<repositories>
<repository>
<id>inhouse</id>
<name>Inhouse maven repository</name>
<url>url to your corporate repository</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
This indicates to maven 2 to look at your inhouse repository to find your
pom corporate in order to download it in your local repository.
Rémy