Skip to content

Commit

Permalink
[ci skip-compare-publications] Updated readme to include info re arti…
Browse files Browse the repository at this point in the history
…facts compiled with Spark 3. (#24)
  • Loading branch information
jverbus committed Dec 26, 2020
1 parent af301e2 commit 62265d8
Showing 1 changed file with 20 additions and 8 deletions.
28 changes: 20 additions & 8 deletions README.md
Expand Up @@ -38,10 +38,10 @@ build command.
./gradlew build -PsparkVersion=2.4.3
```

You can also build an artifact with Spark 2.4 and Scala 2.12.
You can also build an artifact with Spark 2.4 (or 3.0) and Scala 2.12.

```bash
./gradlew build -PsparkVersion=2.4.3 -PscalaVersion=2.12.11
./gradlew build -PsparkVersion=3.0.0 -PscalaVersion=2.12.11
```

### Add an isolation-forest dependency to your project
Expand All @@ -64,17 +64,22 @@ Spark/Scala version combinations.

```
dependencies {
compile 'com.linkedin.isolation-forest:isolation-forest_2.3.0_2.11:1.0.0'
compile 'com.linkedin.isolation-forest:isolation-forest_2.3.0_2.11:1.0.1'
}
```
```
dependencies {
compile 'com.linkedin.isolation-forest:isolation-forest_2.4.3_2.11:1.0.0'
compile 'com.linkedin.isolation-forest:isolation-forest_2.4.3_2.11:1.0.1'
}
```
```
dependencies {
compile 'com.linkedin.isolation-forest:isolation-forest_2.4.3_2.12:1.0.0'
compile 'com.linkedin.isolation-forest:isolation-forest_2.4.3_2.12:1.0.1'
}
```
```
dependencies {
compile 'com.linkedin.isolation-forest:isolation-forest_3.0.0_2.12:1.0.1'
}
```

Expand All @@ -87,21 +92,28 @@ Here are some examples for multiple recent Spark/Scala version combinations.
<dependency>
<groupId>com.linkedin.isolation-forest</groupId>
<artifactId>isolation-forest_2.3.0_2.11</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</dependency>
```
```
<dependency>
<groupId>com.linkedin.isolation-forest</groupId>
<artifactId>isolation-forest_2.4.3_2.11</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</dependency>
```
```
<dependency>
<groupId>com.linkedin.isolation-forest</groupId>
<artifactId>isolation-forest_2.4.3_2.12</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</dependency>
```
```
<dependency>
<groupId>com.linkedin.isolation-forest</groupId>
<artifactId>isolation-forest_3.0.0_2.12</artifactId>
<version>1.0.1</version>
</dependency>
```

Expand Down

0 comments on commit 62265d8

Please sign in to comment.