Skip to content

Commit c96187c

Browse files
vjrjdjtfmartin
andauthored
Feature solr8 merge (#519)
* SOLR quoll updated to 8.60 flag for switching JTS version 'jts_use_1_16' see AtlasOfLivingAustralia/la-pipelines#108 * Added jts flag for jts 1.13 after merge feature/solr8 Co-authored-by: Dave Martin <djtfmartin@gmail.com>
1 parent 40062f4 commit c96187c

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

ansible/roles/solrcloud/defaults/main.yml

+1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ solr_repository: "https://archive.apache.org/dist/lucene/solr/"
55
# By default bind the solr jetty server to a single interface/IP for security
66
# Only set this to true if access to solr is required for other servers and you know the access is well firewalled
77
solr_bind_jetty_host: true
8+
jts_use_1_13: false
89
jts_use_1_16: false
910
jts_use_1_18: false

ansible/roles/solrcloud/tasks/main.yml

+9
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,15 @@
7979
- jts-io-common-1.16.1.jar
8080
tags:
8181
- solrcloud
82+
when: jts_use_1_16
83+
84+
- name: Add JTS 1.13
85+
copy: src=libs/{{item}} dest=/opt/solr/server/lib/ext
86+
with_items:
87+
- jts-1.13.jar
88+
tags:
89+
- solrcloud
90+
when: jts_use_1_13
8291

8392
- name: Add JTS 1.18.1
8493
copy: src=libs/{{item}} dest=/opt/solr/server/lib/ext

0 commit comments

Comments
 (0)