You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemml.apache.org by lr...@apache.org on 2016/01/17 06:46:59 UTC

[1/2] incubator-systemml git commit: [SYSTEMML-463] Enhance distribution profile

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 <lr...@apache.org>
Authored: Sat Jan 16 21:41:12 2016 -0800
Committer: Luciano Resende <lr...@apache.org>
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>


[2/2] incubator-systemml git commit: [SYSTEMML-463] Comment inmemory distribution

Posted by lr...@apache.org.
[SYSTEMML-463] Comment inmemory distribution


Project: http://git-wip-us.apache.org/repos/asf/incubator-systemml/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-systemml/commit/9f9497bc
Tree: http://git-wip-us.apache.org/repos/asf/incubator-systemml/tree/9f9497bc
Diff: http://git-wip-us.apache.org/repos/asf/incubator-systemml/diff/9f9497bc

Branch: refs/heads/master
Commit: 9f9497bc3f2f4680e24884f29d95ca1d2610c62d
Parents: 10792e5
Author: Luciano Resende <lr...@apache.org>
Authored: Sat Jan 16 21:45:48 2016 -0800
Committer: Luciano Resende <lr...@apache.org>
Committed: Sat Jan 16 21:45:48 2016 -0800

----------------------------------------------------------------------
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/9f9497bc/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index b942ea5..2ca14ec 100644
--- a/pom.xml
+++ b/pom.xml
@@ -553,7 +553,7 @@
 								</configuration>
 							</execution>
 
-							<execution>
+							<!--execution>
 								<id>create-inmemory-jar</id>
 								<phase>package</phase>
 								<goals>
@@ -564,7 +564,7 @@
 										<descriptor>src/assembly/inmemory.xml</descriptor>
 									</descriptors>
 								</configuration>
-							</execution>
+							</execution-->
 						</executions>
 					</plugin>