SOLR-13841: Add jackson databind annotations to SolrJ classpath

SOLR-13841: Add jackson databind annotations to SolrJ classpath
This commit is contained in:
Noble Paul 2019-10-20 10:00:13 +11:00 committed by GitHub
parent cabc125eef
commit 831f90fa36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 2 deletions

View File

@ -103,7 +103,7 @@ New Features
Improvements
---------------------
*SOLR-13731: javabin must support a 1:1 mapping of the JSON update format (noble)
* SOLR-13731: 'javabin' must support a 1:1 mapping of the JSON update format (noble)
Optimizations
@ -122,6 +122,8 @@ Other Changes
* SOLR-12769: Fix incorrect documentation for 'delete' op in Request parameters API (Alexandre Rafalovitch, Munendra S N)
* SOLR-13841: Add jackson databind annotations to SolrJ classpath (noble)
================== 8.3.0 ==================
Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release.

View File

@ -61,6 +61,8 @@
<dependency org="io.netty" name="netty-transport-native-epoll" rev="${/io.netty/netty-transport-native-epoll}" conf="compile"/>
<dependency org="io.netty" name="netty-transport-native-unix-common" rev="${/io.netty/netty-transport-native-unix-common}" conf="compile"/>
<dependency org="com.fasterxml.jackson.core" name="jackson-annotations" rev="${/com.fasterxml.jackson.core/jackson-annotations}" conf="compile"/>
<dependency org="org.apache.logging.log4j" name="log4j-slf4j-impl" rev="${/org.apache.logging.log4j/log4j-slf4j-impl}" conf="test"/>
<dependency org="org.mockito" name="mockito-core" rev="${/org.mockito/mockito-core}" conf="test"/>

View File

@ -15,7 +15,7 @@
* limitations under the License.
*/
package org.apache.solr.util;
package org.apache.solr.common.util;
import java.io.IOException;
import java.lang.reflect.Field;