You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by ds...@apache.org on 2024/03/23 05:16:48 UTC

(solr) branch branch_9x updated: Ref Guide: Update required JTS version (#2273)

This is an automated email from the ASF dual-hosted git repository.

dsmiley pushed a commit to branch branch_9x
in repository https://gitbox.apache.org/repos/asf/solr.git


The following commit(s) were added to refs/heads/branch_9x by this push:
     new 3005e9a2764 Ref Guide: Update required JTS version (#2273)
3005e9a2764 is described below

commit 3005e9a276400af07e38772ed186c695620eaf22
Author: ejn <e....@dvz-mv.de>
AuthorDate: Sat Mar 23 06:13:32 2024 +0100

    Ref Guide: Update required JTS version (#2273)
    
    Due to API changes a JTS 1.17.x version is currently required.
    
    The appropriate JTS version may be determined based on the JTS version used for tests in Lucene, referenced in https://github.com/apache/lucene/blob/main/versions.props
    
    Strictly speaking, the appropriate JTS version for the version of spatial4j used by the Lucene version used in Solr should always be referenced - either this needs to be kept manually updated here (or somehow automatically in the build process?) or the process of finding the correct JTS version should be described here in a clear and concise way rather than just pointing to a specific version.
    
    (cherry picked from commit 4a3cd362a01ba54dd5d984da8ddf0eb79de6dbc2)
---
 solr/solr-ref-guide/modules/query-guide/pages/spatial-search.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/solr/solr-ref-guide/modules/query-guide/pages/spatial-search.adoc b/solr/solr-ref-guide/modules/query-guide/pages/spatial-search.adoc
index 4b25e51a9c9..c7a8bda74e9 100644
--- a/solr/solr-ref-guide/modules/query-guide/pages/spatial-search.adoc
+++ b/solr/solr-ref-guide/modules/query-guide/pages/spatial-search.adoc
@@ -480,7 +480,7 @@ The https://github.com/locationtech/jts[JTS Topology Suite] is a popular computa
 It supports a variety of shapes including polygons, buffering shapes, and some invalid polygon repair fall-backs.
 With the help of Spatial4j, included with Solr, the polygons support dateline (anti-meridian) crossing.
 You must download it (a JAR file) and put that in a special location internal to Solr:  `SOLR_INSTALL/server/solr-webapp/webapp/WEB-INF/lib/`.
-You can readily download it here: https://mvnrepository.com/artifact/org.locationtech.jts/jts-core/1.15.0.
+You can readily download it here: https://mvnrepository.com/artifact/org.locationtech.jts/jts-core/1.17.1.
 _It will not work if placed in other more typical Solr lib directories, unfortunately._
 
 Set the `spatialContextFactory` attribute on the field type to `JTS`.