Hello Maven experts
I have simple query but cannot find the answer.
1. I have 75 projects under a given maven repository,which are maintained by
different java developers.
<groupid>TIGER</groupid>
My Requirement :
1.I want to write a script to download all the java source for latest released
version of each of this 75 projects.
2. I dont want to download any other dependencies. I just want to download 75
sources jar and explode the sources and run some code analysis tool.
2. Is there trick which can achieve above task. I was thinking of pom.xml
similar to below.
------------------
<project>
<build>
<defaultGoal>install</defaultGoal>
</build>
<dependencies>
<dependency>
<groupId>TIGER</groupId>
<artifactId>*</artifactId>
<version>RELEASE</version>
<classifier>sources</classifier>
</dependency>
</dependencies>
</project>
-------------------
Above should give a idea : i want to download all the latest jar with wild card
artifactid. Even if wild card is not allowed i am ready to type it..but i want
to avoid typing the versions. I want to get the latest sources jar released in
our maven repository.
Maven 2.2.1
This is just for source code analysis purpose.
Halo
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]