Deron Eriksson created SYSTEMML-1079:
----------------------------------------

             Summary: Add dependencies to Using Maven section of download page
                 Key: SYSTEMML-1079
                 URL: https://issues.apache.org/jira/browse/SYSTEMML-1079
             Project: SystemML
          Issue Type: Improvement
          Components: Documentation
            Reporter: Deron Eriksson


On the main website Download page (http://systemml.apache.org/download), we 
have a Using Maven section, showing the following dependency:

{code}
<dependency>
   <groupId>org.apache.systemml</groupId>
   <artifactId>systemml</artifactId>
   <version>0.10.0-incubating</version>
</dependency>
{code}

However, if a user would like to use SystemML as a library in another project, 
additional dependencies are needed since most SystemML dependencies are 
provided scope in the pom.xml.

For example, here is an example of additional dependencies to use SystemML as a 
library:

{code}
<dependency>
     <groupId>org.apache.systemml</groupId>
     <artifactId>systemml</artifactId>
     <version>0.12.0-SNAPSHOT</version>
</dependency>
<dependency>
     <groupId>org.apache.spark</groupId>
     <artifactId>spark-core_2.10</artifactId>
     <version>1.4.1</version>
</dependency>
<dependency>
     <groupId>org.apache.spark</groupId>
     <artifactId>spark-sql_2.10</artifactId>
     <version>1.4.1</version>
</dependency>
<dependency>
     <groupId>org.apache.spark</groupId>
     <artifactId>spark-mllib_2.10</artifactId>
     <version>1.4.1</version>
</dependency>
{code}

For additional information, see 
https://www.mail-archive.com/dev@systemml.incubator.apache.org/msg00988.html




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to