I have a local repository which I have been installing jars to for a while from different projects. We also have a nexus server running, but it does not have all the jars that I have locally.
I can try to synchronize jars up to nexus one by one. But is there a more efficient way to synchronize up to nexus? Ideally I would want to execute a single command which would look through all the artifacts in my local repo, and push anything which is missing in nexus.
If a cmd script is the only way, it would be very useful with specific tips around this as well.
I might give an update on my progress so far
echo off
echo MavenSync
setlocal EnableDelayedExpansion
for /R . %%f in (*) do (
set jarfile=%%~dpnxf
set name=%%~dpnf
set pomFile=!name!.pom
set clientJar=!name!-client.jar
if [!jarfile:~-4!]==[.jar] (
echo !jarfile!
echo !pomFile!
set repo=http://server/nexus/content/repositories/releases/
if [!jarfile:~-10!]==[client.jar] (
rem Handled elsewhere
) else (
if [!jarfile:~-12!]==[SNAPSHOT.jar] (
set repo=http://server/nexus/content/repositories/snapshots/
)
if EXIST !clientJar! (
echo mvn deploy:deploy-file -Dpackaging=jar -DrepositoryId=nexus -Durl=!repo! -DpomFile="!pomFile!" -Dfile="!jarfile!" -Dfiles="!clientJar!" -Dtypes=client-jar -Dclassifiers=bin
) else (
echo mvn deploy:deploy-file -Dpackaging=jar -DrepositoryId=nexus -Durl=!repo! -DpomFile="!pomFile!" -Dfile="!jarfile!"
)
)
)
)
The Maven goal
deploy:deploy-file
http://maven.apache.org/plugins/maven-deploy-plugin/deploy-file-mojo.html
can deploy single artifacts to Nexus (with attached pom, so you don't need to specify the GAV manually).
You need to write a script that runs over your local repository, gathers all artifacts and uses above goal to deploy them to Nexus.