Skip to content

Commit

Permalink
Feature solr8 merge (#519)
Browse files Browse the repository at this point in the history
* 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 <[email protected]>
  • Loading branch information
vjrj and djtfmartin authored Nov 1, 2021
1 parent 40062f4 commit c96187c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions ansible/roles/solrcloud/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ solr_repository: "https://archive.apache.org/dist/lucene/solr/"
# By default bind the solr jetty server to a single interface/IP for security
# Only set this to true if access to solr is required for other servers and you know the access is well firewalled
solr_bind_jetty_host: true
jts_use_1_13: false
jts_use_1_16: false
jts_use_1_18: false
9 changes: 9 additions & 0 deletions ansible/roles/solrcloud/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,15 @@
- jts-io-common-1.16.1.jar
tags:
- solrcloud
when: jts_use_1_16

- name: Add JTS 1.13
copy: src=libs/{{item}} dest=/opt/solr/server/lib/ext
with_items:
- jts-1.13.jar
tags:
- solrcloud
when: jts_use_1_13

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

0 comments on commit c96187c

Please sign in to comment.