Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How do you force maven to copy dependencies into target/lib?



How do you force maven to copy dependencies into target/lib?..

Answer / Shah Faisal Khan

"To force Maven to copy dependencies into the target/lib directory, you can use the "maven-dependency-plugin". Here's an example:
```
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.1.2</version>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
```
n

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Apache Maven Interview Questions

Mention the steps for installing maven on windows.

1 Answers  


What is the sequence in which maven looks for the resources?

1 Answers  


What is a transitive dependency? Can we override transitive dependency version and if yes, how?

1 Answers  


Give the command for installation of the jar file in a local repository.

1 Answers  


What are the benefit of storing jars/external dependencies in the local repository instead of a remote one?

1 Answers  


How profiles are specified in maven?

1 Answers  


How would you see the version of maven?

1 Answers  


Explain how to run test classes in Maven?

1 Answers  


What is an artifact in maven?

1 Answers  


What is the use of the exclusion element?

1 Answers  


Why Maven Plugins are used?

1 Answers  


Define snapshot in terms of maven.

1 Answers  


Categories