On Thu, Jun 22, 2006 at 06:37:33PM +0200, Usorov, Evgeny (KBV) spake thus: > Hallo, > > I am trying to install a specific plugin (from soap-ui) but I allways get an > error. > I can't install any plugin manually. What is wrong? The automatically > downloading > and installing of plugins works fine, but if i have to install manually i > can't. > > thanks in advance for every help. > > [ > C:\Programme\maven-2.0.4\bin>mvn.bat plugin:install-file -DgroupId=eviware > -DartifactId=maven-soapui-plugin -Dversion=1.5 -Dpackaging=plugin > -Dfile=maven-soapui-plugin-1.5.jar
You want to use 'install:install-file', not 'plugin:install-file': $ mvn install:install-file -DgroupId=eviware -DartifactId=maven-soapui-plugin -Dversion=1.5 -Dpackaging=plugin -Dfile=maven-soapui-plugin-1.5.jar [INFO] Scanning for projects... [INFO] Searching repository for plugin with prefix: 'install'. [INFO] ---------------------------------------------------------------------------- [INFO] Building Maven Default Project [INFO] task-segment: [install:install-file] (aggregator-style) [INFO] ---------------------------------------------------------------------------- [INFO] [install:install-file] [INFO] Installing /tmp/maven-soapui-plugin-1.5.jar to /my/home/.m2/repository/eviware/maven-soapui-plugin/1.5/maven-soapui-plugin-1.5.plugin [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESSFUL [INFO] ------------------------------------------------------------------------ [INFO] Total time: < 1 second [INFO] Finished at: Thu Jun 22 15:11:09 EDT 2006 [INFO] Final Memory: 2M/4M [INFO] ------------------------------------------------------------------------ -- :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: Alan D. Salewski Software Developer Health Market Science, Inc. :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
