Skip to content
This repository has been archived by the owner on Aug 30, 2022. It is now read-only.

Commit

Permalink
#248:
Browse files Browse the repository at this point in the history
* had to update Solrlib to work with Solr7 (hence the version update to 0.6.0-SNAPSHOT)
* had to exclude unused SolrAutoConfiguration (Spring Data Solr) as it fails with Solr7 dependencies
  • Loading branch information
westei committed Sep 28, 2018
1 parent 3fbdfb2 commit 18b737f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import org.junit.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.solr.SolrAutoConfiguration;
import org.springframework.data.mongodb.repository.config.EnableMongoRepositories;
import org.springframework.test.context.ContextConfiguration;

Expand All @@ -20,7 +21,7 @@

@ContextConfiguration(classes={ConversationRepoListener.class})
@EnableMongoRepositories(basePackageClasses={ConversationRepository.class})
@EnableAutoConfiguration
@EnableAutoConfiguration(exclude={SolrAutoConfiguration.class})
public class ConversationRepositoryTest extends SpringServiceTest {


Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
<solr.version>7.5.0</solr.version>
<!-- solr-text-tagger is part of Solr since 7.4.0
<solr.text.tagger.version>2.4</solr.text.tagger.version> -->
<solrlib.version>0.5.0-SNAPSHOT</solrlib.version>
<solrlib.version>0.6.0-SNAPSHOT</solrlib.version>
<redlinknlp.version>2.0.0-SNAPSHOT</redlinknlp.version>

<springfox.version>2.7.0</springfox.version>
Expand Down

0 comments on commit 18b737f

Please sign in to comment.