mirror of https://github.com/apache/maven.git
Use the correct type for pom installation.
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@162985 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
125b833abc
commit
330d33e5aa
|
@ -75,7 +75,7 @@ public class JarInstallMojo
|
||||||
Artifact pomArtifact = new DefaultArtifact( project.getGroupId(),
|
Artifact pomArtifact = new DefaultArtifact( project.getGroupId(),
|
||||||
project.getArtifactId(),
|
project.getArtifactId(),
|
||||||
project.getVersion(),
|
project.getVersion(),
|
||||||
project.getType() );
|
"pom" );
|
||||||
|
|
||||||
artifactInstaller.install( project.getFile(), pomArtifact, localRepository );
|
artifactInstaller.install( project.getFile(), pomArtifact, localRepository );
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue