I’ve installed the latest artifactory for my home repository. I’m used to mvn deploy but with the new version I couldn’t get it to work. The prime reason for upgrading is the promised speed improvement over the older 1.2.5. Anyway, If you run into the same problem, here is the “correct” configuration:
<repository>
<id>internal.repo</id>
<name>MyCo Internal Repository</name>
<url>http://repopc:8081/artifactory/libs-releases-local
</url>
</repository>
<snapshotRepository>
<id>internal.repo.snapshot</id>
<name>MyCo Internal Repository</name>
<url>http://repopc:8081/artifactory/libs-snapshots-local
</url>
</snapshotRepository>
The bold -local is what changed. Took me over 2h to figure it out, since it only shows an html 400 error code in the loggings.
Greetings,
Andries
Appreciate the blog, helped me out. Thanks!
Me too, thanks!