[
https://issues.apache.org/jira/browse/MDEPLOY-218?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Robert Scholte closed MDEPLOY-218.
----------------------------------
Resolution: Not A Problem
Assignee: Robert Scholte
For the usecase a different plugin should be used. I don't think there's a real
issue here, won't investigate it, so closing as "Not a problem" for now.
> deploy-file is inconsistent with install-file behavior.
> -------------------------------------------------------
>
> Key: MDEPLOY-218
> URL: https://issues.apache.org/jira/browse/MDEPLOY-218
> Project: Maven Deploy Plugin
> Issue Type: Bug
> Components: deploy:deploy-file
> Affects Versions: 2.8.2
> Reporter: Yujue Li
> Assignee: Robert Scholte
> Labels: build
>
> The following configuration, install-file will take effect, but deploy-file
> will not take effect.
> {code:xml}
> <build>
> <plugins>
> <plugin>
> <groupId>org.apache.maven.plugins</groupId>
> <artifactId>maven-install-plugin</artifactId>
> <version>2.5.2</version>
> <inherited>false</inherited>
> <configuration>
> <skip>true</skip>
> </configuration>
> </plugin>
> <plugin>
> <groupId>org.apache.maven.plugins</groupId>
> <artifactId>maven-install-plugin</artifactId>
> <version>2.5.2</version>
> <inherited>false</inherited>
> <executions>
> <execution>
> <id>core-install</id>
> <phase>install</phase>
> <goals>
> <goal>install-file</goal>
> </goals>
> <configuration>
>
> <file>${basedir}/pom-deployment.xml</file>
>
> <groupId>com.platform-dev.projects</groupId>
> <artifactId>core</artifactId>
> <version>${c.version}</version>
> <packaging>pom</packaging>
> </configuration>
> </execution>
> </executions>
> </plugin>
> <plugin>
> <groupId>org.apache.maven.plugins</groupId>
> <artifactId>maven-deploy-plugin</artifactId>
> <inherited>false</inherited>
> <version>2.8.2</version>
> <configuration>
> <skip>true</skip>
> </configuration>
> </plugin>
> <plugin>
> <groupId>org.apache.maven.plugins</groupId>
> <artifactId>maven-deploy-plugin</artifactId>
> <version>2.8.2</version>
> <inherited>false</inherited>
> <executions>
> <execution>
> <id>core-deploy</id>
> <phase>deploy</phase>
> <goals>
> <goal>deploy-file</goal>
> </goals>
> <configuration>
>
> <file>${basedir}/pom-deployment.xml</file>
>
> <groupId>com.platform-dev.projects</groupId>
> <artifactId>core</artifactId>
> <version>${c.version}</version>
> <packaging>pom</packaging>
>
> <url>http://192.168.2.241:7001/nexus/content/repositories/releases</url>
>
> <repositoryId>platform-release</repositoryId>
> </configuration>
> </execution>
> </executions>
> </plugin>
> </plugins>
> </build>
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)