Skip to content

Commit

Permalink
upgrade Apache Lucene/Solr version from 7.4.0 to 7.5.0 (#6485)
Browse files Browse the repository at this point in the history
http://lucene.apache.org/core/7_5_0/changes/Changes.html
http://lucene.apache.org/solr/7_5_0/changes/Changes.html

The lucene-solr.version pom.xml property is currently used by two modules:
* deeplearning4j/deeplearning4j-dataimport-solrj
* deeplearning4j/deeplearning4j-modelexport-solr
  • Loading branch information
cpoerschke authored and Adam Gibson committed Oct 4, 2018
1 parent 2189e5e commit 93ad128
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
import org.slf4j.LoggerFactory;

/**
* A {@link DataSetIterator} which uses a <a href="https://lucene.apache.org/solr/guide/7_4/streaming-expressions.html">streaming expression</a>
* to fetch data from Apache Solr and/or one of the sources (e.g. <code>jdbc</code>) supported as a <a href="https://lucene.apache.org/solr/guide/7_4/stream-source-reference.html">stream source</a>.
* A {@link DataSetIterator} which uses a <a href="https://lucene.apache.org/solr/guide/7_5/streaming-expressions.html">streaming expression</a>
* to fetch data from Apache Solr and/or one of the sources (e.g. <code>jdbc</code>) supported as a <a href="https://lucene.apache.org/solr/guide/7_5/stream-source-reference.html">stream source</a>.
* <p>
* Example code snippet:
<pre>{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@

<!--
This file is a minimal test configuration. For comprehensive information about solrconfig.xml please refer to
http://lucene.apache.org/solr/guide/7_4/configuring-solrconfig-xml.html
http://lucene.apache.org/solr/guide/7_5/configuring-solrconfig-xml.html
and the well-commented example files in the Apache Solr release's server/solr/configsets directories.
-->

<config>
<luceneMatchVersion>7.4.0</luceneMatchVersion>
<luceneMatchVersion>7.5.0</luceneMatchVersion>
</config>
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
import org.nd4j.linalg.factory.Nd4j;

/**
* An <a href="https://lucene.apache.org/solr/7_4_0/solr-ltr/org/apache/solr/ltr/model/LTRScoringModel.html">
* An <a href="https://lucene.apache.org/solr/7_5_0/solr-ltr/org/apache/solr/ltr/model/LTRScoringModel.html">
* org.apache.solr.ltr.model.LTRScoringModel</a> that computes scores using a {@link MultiLayerNetwork} or
* {@link ComputationGraph} model.
* <p>
Expand All @@ -58,7 +58,7 @@
* <p>
* Apache Solr Reference Guide:
* <ul>
* <li> <a href="https://lucene.apache.org/solr/guide/7_4/learning-to-rank.html">Learning To Rank</a>
* <li> <a href="https://lucene.apache.org/solr/guide/7_5/learning-to-rank.html">Learning To Rank</a>
* </ul>
*/
public class ScoringModel extends AdapterModel {
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@
<geo.jackson.version>2.8.7</geo.jackson.version>
<lombok.version>1.18.2</lombok.version>
<cleartk.version>2.0.0</cleartk.version>
<lucene-solr.version>7.4.0</lucene-solr.version>
<lucene-solr.version>7.5.0</lucene-solr.version>
<json.version>20131018</json.version>
<google.protobuf.version>2.6.1</google.protobuf.version>
<failIfNoTests>false</failIfNoTests>
Expand Down

0 comments on commit 93ad128

Please sign in to comment.