Skip to content

Commit

Permalink
[hotfix] unbundle the example projects
Browse files Browse the repository at this point in the history
  • Loading branch information
docete committed May 23, 2024
1 parent f0e2ae3 commit 5bf9ea1
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ target
/.settings/
/.classpath
/.project
/dependency-reduced-pom.xml
dependency-reduced-pom.xml
/bin/
/doc/
/conf/
Expand Down
35 changes: 29 additions & 6 deletions examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,44 @@
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.sedona</groupId>
<artifactId>sedona-parent</artifactId>
<version>1.6.0</version>
</parent>

<groupId>org.apache.sedona</groupId>
<artifactId>sedona-examples</artifactId>
<name>Sedona : Examples : </name>
<version>1.6.0</version>
<name>Sedona : Examples</name>
<packaging>pom</packaging>

<modules>
<module>flink-sql</module>
<module>spark-sql</module>
</modules>

<properties>
<log4j.version>2.17.2</log4j.version>
<slf4j.version>1.7.36</slf4j.version>
<geotools.version>28.2</geotools.version>
<flink.version>1.19.0</flink.version>
<scala.compat.version>2.12</scala.compat.version>
</properties>

<!-- add OSGeo Repositories for examples-->
<repositories>
<repository>
<id>osgeo</id>
<name>OSGeo Release Repository</name>
<url>https://repo.osgeo.org/repository/release/</url>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
</repository>
<repository>
<id>osgeo-snapshot</id>
<name>OSGeo Snapshot Repository</name>
<url>https://repo.osgeo.org/repository/snapshot/</url>
<snapshots><enabled>true</enabled></snapshots>
<releases><enabled>false</enabled></releases>
</repository>
</repositories>

<dependencies>
<!-- Add a logging Framework, to make the examples produce -->
<!-- logs when executing in the IDE -->
Expand Down
1 change: 0 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,6 @@
<module>flink</module>
<module>flink-shaded</module>
<module>snowflake</module>
<module>examples</module>
</modules>
</profile>
<profile>
Expand Down

0 comments on commit 5bf9ea1

Please sign in to comment.