Remove old datavec.spark.version tag (#8232)

Signed-off-by: AlexDBlack <blacka101@gmail.com>
master
Alex Black 2019-09-12 23:43:01 +10:00 committed by GitHub
parent 78bca543a8
commit bdfeedb16d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 6 additions and 17 deletions

View File

@ -50,7 +50,7 @@
<dependency>
<groupId>org.datavec</groupId>
<artifactId>datavec-spark_2.11</artifactId>
<version>${datavec.spark.version}</version>
<version>${datavec.version}</version>
</dependency>
<dependency>

View File

@ -43,7 +43,7 @@
<dependency>
<groupId>org.datavec</groupId>
<artifactId>datavec-spark_2.11</artifactId>
<version>${datavec.spark.version}</version>
<version>${datavec.version}</version>
</dependency>
<dependency>

View File

@ -36,8 +36,6 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<datavec.spark.version>1.0.0-SNAPSHOT</datavec.spark.version>
<scala.macros.version>2.1.0</scala.macros.version>
<!-- Default scala versions, may be overwritten by build profiles -->

View File

@ -47,7 +47,7 @@ To use the gradient sharing implementation include the following dependency:
<dependency>
<groupId>org.deeplearning4j</groupId>
<artifactId>dl4j-spark-parameterserver_${scala.binary.version}</artifactId>
<version>${dl4j.spark.version}</version>
<version>${dl4j.version}</version>
</dependency>
```
@ -57,7 +57,7 @@ If using the parameter averaging implementation (again, the gradient sharing imp
<dependency>
<groupId>org.deeplearning4j</groupId>
<artifactId>dl4j-spark_${scala.binary.version}</artifactId>
<version>${dl4j.spark.version}</version>
<version>${dl4j.version}</version>
</dependency>
```
Note that ${scala.binary.version} is a Maven property with the value 2.10 or 2.11 and should match the version of Spark you are using.

View File

@ -58,7 +58,7 @@ Here's the template for the only required dependency:
<dependency>
<groupId>org.deeplearning4j</groupId>
<artifactId>dl4j-spark-parameterserver_${scala.binary.version}</artifactId>
<version>${dl4j.spark.version}</version>
<version>${dl4j.version}</version>
</dependency>
```
@ -68,7 +68,7 @@ For example:
<dependency>
<groupId>org.deeplearning4j</groupId>
<artifactId>dl4j-spark-parameterserver_2.11</artifactId>
<version>0.9.1_spark_2</version>
<version>${dl4j.version}</version>
</dependency>
```

View File

@ -59,15 +59,6 @@ To version:
<nd4j.version>1.0.0-SNAPSHOT</nd4j.version>
```
For Spark dependencies, change as follows:
```
<dl4j.spark.version>1.0.0-beta2_spark_2</dl4j.spark.version>
```
to
```
<dl4j.spark.version>1.0.0_spark_2-SNAPSHOT</dl4j.spark.version>
```
**Sample pom.xml using Snapshots**
A sample pom.xml is provided here: [sample pom.xml using snapshots](https://gist.github.com/AlexDBlack/28b0c9a72bce562c8782be326a6e2aaa)