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

   **[Vardaan 
Gupta](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=vardaan)** 
commented
   
   \<plugin>
                                \<groupId>org.apache.maven.plugins\</groupId>
                                
\<artifactId>maven-dependency-plugin\</artifactId>
                                \<executions>
                                        \<execution>
                                                \<id>unpack-resources\</id>
                                                \<phase>package\</phase>
                                                \<goals>
                                                        \<goal>unpack\</goal>
                                                \</goals>
                                        \</execution>
                                \</executions>
                                \<configuration>
                                        \<artifactItems>
                                                \<artifactItem>
                                                        
\<groupId>my.cache\</groupId>
                                                        
\<artifactId>my-imdg-security\</artifactId>
                                                        
\<version>${my.cache.version}\</version>
                                                        
\<includes>**/*.keystore\</includes>                            
                                                        
\<outputDirectory>${basedir}/src/resources/\</outputDirectory>
   
                          </artifactItem>
                 </artifactItems>
       <overWriteIfNewer>true</overWriteIfNewer>
            </configuration>
       </plugin>
            <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-dependency-plugin</artifactId>
            <executions>
                 <execution>
                          <id>copy-resources</id>
                          <phase>package</phase>
                          <goals>
                                   <goal>copy</goal>
                          </goals>
                 </execution>
            </executions>
            <configuration>
                 <artifactItems>
                 <artifactItem>
                                   <groupId>org.slf4j</groupId>
                                   <artifactId>slf4j-api</artifactId>
                                   <version>${slf4j.version}</version>
                                   <type>jar</type>
                                                                                
                                                                                
                                                                                
                                                               
<overWrite>true</overWrite>                                                     
 
                                   
<outputDirectory>${basedir}/lib/</outputDirectory>
                          </artifactItem>
                          <artifactItem>
                                   <groupId>my.cache</groupId>
                                   <artifactId>my-imdg-security</artifactId>
                                   <version>${my.cache.version}</version>
                                   <overWrite>true</overWrite>
                                   <type>jar</type>
                                                                                
                                                                                
                                                                                
                                                               
<overWrite>true</overWrite>                                                     
 
                                   
<outputDirectory>${basedir}/lib/</outputDirectory>
                                                                                
                                                                                
                  </artifactItem>                                               
                 </artifactItems>
                                                                                
                                                                                
         <overWriteReleases>true</overWriteReleases>                    
                 <overWriteSnapshots>true</overWriteSnapshots>
            </configuration>
       </plugin>
   
   


-- 
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