Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DOCS] Fix filename casing for pom.xml #1113

Merged
merged 1 commit into from
Nov 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/api/sql/Overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ SedonaSQL supports SparkSQL query optimizer, documentation is [Here](../Optimize

The detailed explanation is here [Write a SQL/DataFrame application](../../tutorial/sql.md).

1. Add Sedona-core and Sedona-SQL into your project POM.xml or build.sbt
1. Add Sedona-core and Sedona-SQL into your project pom.xml or build.sbt
2. Create your Sedona config if you want to customize your SparkSession.
```scala
import org.apache.sedona.spark.SedonaContext
Expand Down
2 changes: 1 addition & 1 deletion docs/api/viz/sql.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

The detailed explanation is here: [Visualize Spatial DataFrame/RDD](../../tutorial/viz.md).

1. Add Sedona-core, Sedona-SQL,Sedona-Viz into your project POM.xml or build.sbt
1. Add Sedona-core, Sedona-SQL, Sedona-Viz into your project pom.xml or build.sbt
2. Declare your Spark Session
```scala
sparkSession = SparkSession.builder().
Expand Down
6 changes: 3 additions & 3 deletions docs/community/develop.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ The IDE usually has trouble understanding the complex project structure in Sedon

<img src="../../image/ide-java-4.png"/>

#### Fix errors by changing POM.xml
#### Fix errors by changing pom.xml

You need to comment out the following lines in `pom.xml` at the root folder, as follows. ==Remember that you should NOT submit this change to Sedona.==

Expand All @@ -35,9 +35,9 @@ You need to comment out the following lines in `pom.xml` at the root folder, as
<!-- </parent>-->
```

#### Reload POM.xml
#### Reload pom.xml

Make sure you reload the POM.xml or reload the maven project. The IDE will ask you to remove some modules. Please select `yes`.
Make sure you reload the pom.xml or reload the maven project. The IDE will ask you to remove some modules. Please select `yes`.

<img src="../../image/ide-java-5.png"/>

Expand Down
2 changes: 1 addition & 1 deletion docs/setup/flink/install-scala.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Before starting the Sedona journey, you need to make sure your Apache Flink clus

Then you can create a self-contained Scala / Java project. A self-contained project allows you to create multiple Scala / Java files and write complex logics in one place.

To use Sedona in your self-contained Flink project, you just need to add Sedona as a dependency in your POM.xml or build.sbt.
To use Sedona in your self-contained Flink project, you just need to add Sedona as a dependency in your pom.xml or build.sbt.

1. To add Sedona as dependencies, please read [Sedona Maven Central coordinates](../../maven-coordinates)
2. Read [Sedona Flink guide](../../../tutorial/flink/sql) and use Sedona Template project to start: [Sedona Template Project](../../../tutorial/demo/)
Expand Down
2 changes: 1 addition & 1 deletion docs/setup/install-scala.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Please see [Use Sedona in a pure SQL environment](../../tutorial/sql-pure-sql/)

## Self-contained Spark projects

A self-contained project allows you to create multiple Scala / Java files and write complex logics in one place. To use Sedona in your self-contained Spark project, you just need to add Sedona as a dependency in your POM.xml or build.sbt.
A self-contained project allows you to create multiple Scala / Java files and write complex logics in one place. To use Sedona in your self-contained Spark project, you just need to add Sedona as a dependency in your pom.xml or build.sbt.

1. To add Sedona as dependencies, please read [Sedona Maven Central coordinates](maven-coordinates.md)
2. Use Sedona Template project to start: [Sedona Template Project](../../tutorial/demo/)
Expand Down
8 changes: 4 additions & 4 deletions docs/setup/maven-coordinates.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ Under BSD 3-clause (compatible with Apache 2.0 license)

=== "Sedona 1.3.1+"

Add unidata repo to your POM.xml
Add unidata repo to your pom.xml

```
<repositories>
Expand Down Expand Up @@ -253,7 +253,7 @@ Under BSD 3-clause (compatible with Apache 2.0 license)

=== "Sedona 1.3.1+"

Add unidata repo to your POM.xml
Add unidata repo to your pom.xml

```
<repositories>
Expand Down Expand Up @@ -289,11 +289,11 @@ Under BSD 3-clause (compatible with Apache 2.0 license)
## SNAPSHOT versions
Sometimes Sedona has a SNAPSHOT version for the upcoming release. It follows the same naming conversion but has "SNAPSHOT" as suffix in the version. For example, `{{ sedona_create_release.current_snapshot }}`

In order to download SNAPSHOTs, you need to add the following repositories in your POM.XML or build.sbt
In order to download SNAPSHOTs, you need to add the following repositories in your pom.xml or build.sbt
### build.sbt
resolvers +=
"Apache Software Foundation Snapshots" at "https://repository.apache.org/content/groups/snapshots"
### POM.XML
### pom.xml

```xml
<repositories>
Expand Down
Loading