[ 
https://issues.apache.org/jira/browse/MINSTALL-156?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16761665#comment-16761665
 ] 

Karl Heinz Marbaise commented on MINSTALL-156:
----------------------------------------------

I have taken a short look into the pom file. So now the real question is: Why 
do you have configured maven-install-plugin and maven-deploy-plugin? The 
destination repository where all artifacts will be deployed to is defined by 
{{distributionManagement}} which is not defined here so you have to. 
Furthermore is the question why you have configured maven-assembly-plugin but 
configured {{<attach>false</attach>}} please explain what your use case is? 
So in the end you can simply define a {{distributionManagement}} in your pom 
file and remove {{<attach>false</attach>}}  from the maven-assembly-plugin 
everything will be installed/deployed via {{mvn clean deploy}} or {{mvn clean 
install}} ? 

I have made PR to your repository take a deep look into the result... cause it 
sounds like you have a misunderstanding of how Maven works....

> generatePom=false not working with 3.0.0-M1
> -------------------------------------------
>
>                 Key: MINSTALL-156
>                 URL: https://issues.apache.org/jira/browse/MINSTALL-156
>             Project: Maven Install Plugin
>          Issue Type: Bug
>    Affects Versions: 3.0.0-M1
>            Reporter: Robert Lieske
>            Priority: Major
>
> Steps to reproduce:
> {{mvn archetype:generate -DarchetypeGroupId=org.apache.maven.archetypes 
> -DarchetypeArtifactId=maven-archetype-quickstart -DarchetypeVersion=1.4 
> -DgroupId=test1 -DartifactId=test1 -Dversion=1.0-SNAPSHOT}}
>  
> {{mvn clean package install:install-file -Dfile=target/test1-1.0-SNAPSHOT.jar 
> -DgeneratePom=false}}
> produces:
> {quote}[INFO] --- maven-install-plugin:2.5.2:install-file (default-cli) @ 
> test1 ---
> [INFO] Installing D:\Workarea\sample\test1\target\test1-1.0-SNAPSHOT.jar to 
> C:\Users\xxx\.m2\repository\test1\test1\1.0-SNAPSHOT\test1-1.0-SNAPSHOT.jar
> [INFO] 
> ------------------------------------------------------------------------
> {quote}
>  
> changing the version of the maven-install-plugin in pom.xml to 
> {{<plugin>}}
> {{ <artifactId>maven-install-plugin</artifactId>}}
> {{ <version>3.0.0-M1</version>}}
> {{ </plugin>}}
>  
> the same call to
> {{mvn clean package install:install-file -Dfile=target/test1-1.0-SNAPSHOT.jar 
> -DgeneratePom=false}}
> produces:
> {quote}[INFO] --- maven-install-plugin:3.0.0-M1:install-file (default-cli) @ 
> test1 ---
> [INFO] Installing D:\Workarea\sample\test1\target\test1-1.0-SNAPSHOT.jar to 
> C:\Users\xxx\.m2\repository\test1\test1\1.0-SNAPSHOT\test1-1.0-SNAPSHOT.jar
> [INFO] Installing 
> C:\Users\xxx\AppData\Local\Temp\test1-1.0-SNAPSHOT7157743325898943802.pom to 
> C:\Users\xxx\.m2\repository\test1\test1\1.0-SNAPSHOT\test1-1.0-SNAPSHOT.pom
> [INFO] 
> ------------------------------------------------------------------------
> {quote}
>  
> Which also installs a POM - which is not what we want!
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to