Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade Apache Lucene/Solr version from 7.5.0 to 7.7.1 #7539

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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_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>.
* A {@link DataSetIterator} which uses a <a href="https://lucene.apache.org/solr/guide/7_7/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_7/stream-source-reference.html">stream source</a>.
* <p>
* Example code snippet:
<pre>{
Expand Down
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_5/configuring-solrconfig-xml.html
http://lucene.apache.org/solr/guide/7_7/configuring-solrconfig-xml.html
and the well-commented example files in the Apache Solr release's server/solr/configsets directories.
-->

<config>
<luceneMatchVersion>7.5.0</luceneMatchVersion>
<luceneMatchVersion>7.7.1</luceneMatchVersion>
</config>
Expand Up @@ -38,7 +38,7 @@
import org.nd4j.linalg.factory.Nd4j;

/**
* An <a href="https://lucene.apache.org/solr/7_5_0/solr-ltr/org/apache/solr/ltr/model/LTRScoringModel.html">
* An <a href="https://lucene.apache.org/solr/7_7_1/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_5/learning-to-rank.html">Learning To Rank</a>
* <li> <a href="https://lucene.apache.org/solr/guide/7_7/learning-to-rank.html">Learning To Rank</a>
* </ul>
*/
public class ScoringModel extends AdapterModel {
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -334,7 +334,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.5.0</lucene-solr.version>
<lucene-solr.version>7.7.1</lucene-solr.version>
<json.version>20131018</json.version>
<google.protobuf.version>2.6.1</google.protobuf.version>
<failIfNoTests>false</failIfNoTests>
Expand Down