jira-importer commented on issue #145:
URL: 
https://github.com/apache/maven-install-plugin/issues/145#issuecomment-2771840336

   **[Jason 
Dillon](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=ja...@planet57.com)**
 commented
   
   The latest `2.2-SNAPSHOT` resolves this problem.  To use add this to your 
pom:
   
   ```
    <pluginRepositories>
       <pluginRepository>
           <id>apache-snapshots</id>
           <name>Apache Snapshots Repository</name>
           <url>http://people.apache.org/repo/m2-snapshot-repository</url>
           <layout>default</layout>
           <snapshots>
               <enabled>true</enabled>
               <updatePolicy>daily</updatePolicy>
               <checksumPolicy>ignore</checksumPolicy>
           </snapshots>
           <releases>
               <enabled>false</enabled>
           </releases>
       </pluginRepository>
   </pluginRepositories>
   
   <build>
       <pluginManagement>
           <plugins>
               <plugin>
                   <groupId>org.apache.maven.plugins</groupId>
                   <artifactId>maven-install-plugin</artifactId>
                   <version>2.2-SNAPSHOT</version>
               </plugin>
           </plugins>
       </pluginManagement>
   </build>
   ```
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to