+1
We do it in ACE simply using:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
If all are OK, I will do the enhancement.
Regards
JB
On 02/23/2011 01:56 PM, Guillaume Nodet wrote:
We need to have a source distribution for bundles (i mean third party
libraries we turn into osgi bundles) we release, that's a clear ASF
policy and we don't really conform to it.
It should be quite easy to do in the parent bundle pom but we need to
do that before releasing anymore bundles.