Skip to content

Commit 140d641

Browse files
committed
Bumped to 1.3.0
And depending on Spark connector 2.6.0.
1 parent 2317aef commit 140d641

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

docs/api.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ To add Flux as a dependency to your application, add the following to your Maven
2222
<dependency>
2323
<groupId>com.marklogic</groupId>
2424
<artifactId>flux-api</artifactId>
25-
<version>1.3-SNAPSHOT</version>
25+
<version>1.3.0</version>
2626
</dependency>
2727
```
2828

2929
Or if you are using Gradle, add the following to your `build.gradle` file:
3030

3131
```
3232
dependencies {
33-
implementation "com.marklogic:flux-api:1.3-SNAPSHOT"
33+
implementation "com.marklogic:flux-api:1.3.0"
3434
}
3535
```
3636

@@ -99,7 +99,7 @@ buildscript {
9999
mavenCentral()
100100
}
101101
dependencies {
102-
classpath "com.marklogic:flux-api:1.3-SNAPSHOT"
102+
classpath "com.marklogic:flux-api:1.3.0"
103103
}
104104
}
105105
```
@@ -153,7 +153,7 @@ buildscript {
153153
mavenCentral()
154154
}
155155
dependencies {
156-
classpath "com.marklogic:flux-api:1.3-SNAPSHOT"
156+
classpath "com.marklogic:flux-api:1.3.0"
157157
}
158158
configurations.all {
159159
resolutionStrategy.eachDependency { DependencyResolveDetails details ->

examples/client-project/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ buildscript {
1010
mavenLocal()
1111
}
1212
dependencies {
13-
classpath "com.marklogic:flux-api:1.3-SNAPSHOT"
13+
classpath "com.marklogic:flux-api:1.3.0"
1414
}
1515

1616
// This is required when a plugin, such as ml-gradle, is on the classpath that brings along a version of Jackson
@@ -42,8 +42,8 @@ repositories {
4242
}
4343

4444
dependencies {
45-
implementation "com.marklogic:flux-api:1.3-SNAPSHOT"
46-
implementation "com.marklogic:flux-embedding-model-minilm:1.3-SNAPSHOT"
45+
implementation "com.marklogic:flux-api:1.3.0"
46+
implementation "com.marklogic:flux-embedding-model-minilm:1.3.0"
4747
}
4848

4949
/**

flux-cli/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ configurations {
2222

2323
dependencies {
2424
implementation "org.apache.spark:spark-sql_2.12:${sparkVersion}"
25-
implementation "com.marklogic:marklogic-spark-connector:2.6-SNAPSHOT"
25+
implementation "com.marklogic:marklogic-spark-connector:2.6.0"
2626
implementation "info.picocli:picocli:4.7.6"
2727

2828
// The shadow jar intended for usage with spark-submit needs the above "core" libraries as well, but not the Spark
2929
// API since spark-submit provides that.
3030
// Any other implementation dependencies below this are either provided by spark-submit or can be easily included
3131
// with spark-submit via its support for downloading dependencies expressed by Maven coordinates.
32-
shadowDependencies "com.marklogic:marklogic-spark-connector:2.6-SNAPSHOT"
32+
shadowDependencies "com.marklogic:marklogic-spark-connector:2.6.0"
3333
shadowDependencies "info.picocli:picocli:4.7.6"
3434

3535
// Spark 3.4.3 depends on Hadoop 3.3.4, which depends on AWS SDK 1.12.262. As of August 2024, all public releases of

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version=1.3-SNAPSHOT
1+
version=1.3.0
22

33
# Aligned with our Spark connector.
44
sparkVersion=3.5.5

0 commit comments

Comments
 (0)