I've encountered some errors when I tried to install an artifact manually with Maven 2. I wanted to install a jar from a local directory with the command

mvn install:install-file -Dfile=jta-1.0.1B.jar

But Maven gave a build error which reads like:

Invalid task '.01B.jar': you must
specify a valid lifecycle phase, or a
goal in the format plugin:goal or
pluginGroupId:pluginArtifactId:pluginVersion:goal

Is there a mistake with my command?

link|improve this question

62% accept rate
What is the status of this? Is you question resolved? – Matt Fisher Jun 16 '09 at 19:54
feedback

5 Answers

up vote 48 down vote accepted

You need to indicate the groupId, the artifactId and the version for your artifact:

mvn install:install-file -DgroupId=javax.transaction -DartifactId=jta -Dpackaging=jar -Dversion=1.0.1B -Dfile=jta-1.0.1B.jar -DgeneratePom=true
link|improve this answer
2  
-Dpackaging=jar or similar is missing – kaboom Jun 5 '10 at 17:09
   
@kaboom No! By default, the packaging is jar, so you don't need to specify this in thé command... – romaintaz Jun 5 '10 at 18:08
strange. Din't work for me somehow. – kaboom Jun 6 '10 at 9:35
does not work for me too: Missing group, artifact, version, or packaging information – ahmet alp balkan Aug 4 '10 at 17:02
@romaintaz kaboom is correct; you need -Dpackaging=jar (or whatever the type is) otherwise you will get an error about "'packaging' is missing." – Jack Edmonds Aug 7 '10 at 1:21
show 2 more comments
feedback

According to maven's Guide to installing 3rd party JARs, the command is:

mvn install:install-file -Dfile=<path-to-file> -DgroupId=<group-id> \
-DartifactId=<artifact-id> -Dversion=<version> -Dpackaging=<packaging>

You need indeed the packaging option. This answers the original question.

Now, in your context, you are fighting with a jar provided by Sun. You should read the Coping with Sun JARs page too. There, you'll learn how to help maven to provide you better information about Sun jars location and how to add Java.net Maven 2 repository which contains jta-1.0.1B.jar. Add this in your settings.xml (not portable) or pom.xml (portable):

  <repositories>
    <repository>
      <id>maven2-repository.dev.java.net</id>
      <name>Java.net Repository for Maven</name>
      <url>http://download.java.net/maven/2/</url>
      <layout>default</layout>
    </repository>
  </repositories>
link|improve this answer
feedback

Answer is to escape the dash!

http://www.mail-archive.com/users@maven.apache.org/msg83991.html

link|improve this answer
Damm me. that was it. all the -D parameters must be enclosed in `. – Martin Oct 13 '10 at 12:02
feedback

I had to add packaging, so:

mvn install:install-file -DgroupId=javax.transaction -DartifactId=jta -Dversion=1.0.1B -Dfile=jta-1.0.1B.jar -DgeneratePom=true -Dpackaging=jar

link|improve this answer
feedback

If you ever get similar errors when using Windows PowerShell, you should try Windows' simple command-line. I didn't find out what caused this, but PowerShell seems to interpret some of Maven's parameters.

link|improve this answer
Look at S. Bollweber answer above. And at least TakeCommand expresses the same bahaviour. – Martin Oct 13 '10 at 12:08
No reason to downvote my answer – S. Bollweber answered a few months after myself. – Koraktor Dec 16 '10 at 22:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.