Repository: incubator-systemml Updated Branches: refs/heads/master f13932675 -> 9f9497bc3
[SYSTEMML-463] Enhance distribution profile Project: http://git-wip-us.apache.org/repos/asf/incubator-systemml/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-systemml/commit/10792e5b Tree: http://git-wip-us.apache.org/repos/asf/incubator-systemml/tree/10792e5b Diff: http://git-wip-us.apache.org/repos/asf/incubator-systemml/diff/10792e5b Branch: refs/heads/master Commit: 10792e5b68cc62b5ff57abf7fc910f57c3013428 Parents: f139326 Author: Luciano Resende <[email protected]> Authored: Sat Jan 16 21:41:12 2016 -0800 Committer: Luciano Resende <[email protected]> Committed: Sat Jan 16 21:41:12 2016 -0800 ---------------------------------------------------------------------- pom.xml | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/10792e5b/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 02ef8e7..b942ea5 100644 --- a/pom.xml +++ b/pom.xml @@ -567,6 +567,57 @@ </execution> </executions> </plugin> + + <plugin> + <artifactId>maven-deploy-plugin</artifactId> + <version>2.8.2</version> + <configuration> + <updateReleaseInfo>true</updateReleaseInfo> + </configuration> + <executions> + <execution> + <goals> + <goal>deploy</goal> + </goals> + </execution> + </executions> + </plugin> + + <plugin> + <artifactId>maven-gpg-plugin</artifactId> + <version>1.6</version> + <executions> + <execution> + <phase>verify</phase> + <goals> + <goal>sign</goal> + </goals> + </execution> + </executions> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-source-plugin</artifactId> + <version>2.4</version> + <executions> + <execution> + <id>attach-sources</id> + <goals> + <goal>jar-no-fork</goal> + </goals> + </execution> + </executions> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <version>2.10.3</version> + <configuration> + <maxmemory>1024m</maxmemory> + </configuration> + </plugin> </plugins> </build> </profile>
