Commit fd311895 authored by Administrator's avatar Administrator

Adds sources and javadocs to the deployments

The source and javadoc of each proyect is deployed in the repository along with
the binaries.
parent 0e9c6f1d
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
<packaging>pom</packaging> <packaging>pom</packaging>
<name>Sample</name> <name>Sample</name>
<distributionManagement> <distributionManagement>
<repository> <repository>
<id>deployment</id> <id>deployment</id>
<name>Internal Releases</name> <name>Internal Releases</name>
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
<name>Internal SNAPSHOT Releases</name> <name>Internal SNAPSHOT Releases</name>
<url>http://sing.ei.uvigo.es/dt/nexus/content/repositories/snapshots/</url> <url>http://sing.ei.uvigo.es/dt/nexus/content/repositories/snapshots/</url>
</snapshotRepository> </snapshotRepository>
</distributionManagement> </distributionManagement>
<modules> <modules>
<module>domain</module> <module>domain</module>
...@@ -216,6 +216,30 @@ ...@@ -216,6 +216,30 @@
<deployAtEnd>true</deployAtEnd> <deployAtEnd>true</deployAtEnd>
</configuration> </configuration>
</plugin> </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins> </plugins>
<pluginManagement> <pluginManagement>
<plugins> <plugins>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment