Conf. Maven for sources.jar

* Added the maven-source-plugin for generating the *-sources.jar of an artifact

FEA: ItEr02S03MigracionZK5
This commit is contained in:
Farruco Sanjurjo 2010-08-03 18:59:45 +02:00 committed by Óscar González Fernández
parent b479e7268d
commit 2359d2a46e

View file

@ -31,6 +31,21 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<executions>
<execution>
<id>default</id>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>