On 07/03/2008, youhaodeyi <[EMAIL PROTECTED]> wrote: > > > I use tomcat to set up a repository server in local network. And I install > some jar files to this repository. When a client download their > dependencies > from the repository server, it will get a error: > > Downloading [203] -> > > http://3.36.231.203:8080/maven/repository/dcm4che/dcm4che-net/2.0.13/dcm4che-net-2.0.13.jar > ....................................... > [WARN] *** CHECKSUM FAILED - Error retrieving checksum file for > dcm4che/dcm4che-net/2.0.13/dcm4che-net-2.0.13.jar - IGNORING > > The jar file can be downloaded successfully. But why the checksum failed? > I > install the file dcm4che-net-2.0.13.jar manually in the repository server: > > mvn install:install-file -DgroupId=dcm4che -DartifactId=dcm4che-net > -Dversion=2.0.13 -Dpackaging=jar -Dfile=dcm4che-net-2.0.13.jar > > Did I make a mistake when installing the file?
install-file is for installing files into your local maven repository you should use deploy:deploy-file to deploy files into a remote shared repository (or use something like Archiva/Proximity) -- > View this message in context: > http://www.nabble.com/How-to-set-up-a-repository--tp15891048s177p15891048.html > Sent from the Maven - Users mailing list archive at Nabble.com. > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- Cheers, Stuart
