Hello,
Doing a deploy of my Maven project from Hudson to a Nexus repository won't re-index. I've seen
this issue that was closed as not reproducible.
Some more details:
Java 1.5
Hudson 1.307
Nexus 1.3.4 OS
Solaris 5.9
Maven 2.1.0
In fact, the project I'm deploying is an archetype snapshot:
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>xxx</groupId>
<artifactId>archetype-web</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>maven-plugin</packaging>
<distributionManagement>
<repository>
<id>internal.snapshot.repo</id>
<name>Nexus snapshot repo</name>
<url>file:///myhome/gla/sonatype-work/nexus/storage/snapshots</url>
</repository>
</distributionManagement>
</project>
It's a Hudson build with goals 'clean deploy'. The artifacts are correctly uploaded and visible in Nexus browser but only on local storage. Not in the index. I still have to do a manual re-index to be able to see it in the index.
Any hints on this?