how to install a lot of plain jars into maven repo (with ant-maven tasks)

2008-03-26 Thread Xasima Xirohata
hi, Could you please point me to existent ant / maven file (or hint the other solution), that helps install a great amount of ordinary jar files into local maven repository. Basically, I'm going to reorganize my projects with maven principles and tool, so I need to install into repository all

Re: how to install a lot of plain jars into maven repo (with ant-maven tasks)

2008-03-26 Thread Stephen Connolly
The way I did it was dir /b *.jar bag_of_jars.txt Then I used regex's to turn bag_of_jars.txt into a batch file with mvn deploy:deploy-file -DgeneratePom=true -Dfile=... and I ran the batch file. It's a once off, and since you have to tweak the groupId's to match what's in the global repos