Upgrade to Spring 4.1.

Switched to Rome 1.5 for MongoDB text search example as that's needed after the Spring 4.1 upgrade.
This commit is contained in:
Oliver Gierke
2014-09-04 13:19:01 +02:00
parent c395f5ae3e
commit 3bb508292a
3 changed files with 7 additions and 6 deletions

View File

@@ -18,9 +18,9 @@
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>net.java.dev.rome</groupId>
<groupId>com.rometools</groupId>
<artifactId>rome</artifactId>
<version>1.0.0</version>
<version>1.5.0</version>
</dependency>
</dependencies>
</project>

View File

@@ -26,10 +26,10 @@ import org.springframework.http.ResponseEntity;
import org.springframework.util.Assert;
import org.springframework.web.client.RestTemplate;
import com.sun.syndication.feed.atom.Category;
import com.sun.syndication.feed.atom.Content;
import com.sun.syndication.feed.atom.Entry;
import com.sun.syndication.feed.atom.Feed;
import com.rometools.rome.feed.atom.Category;
import com.rometools.rome.feed.atom.Content;
import com.rometools.rome.feed.atom.Entry;
import com.rometools.rome.feed.atom.Feed;
import example.springdata.mongodb.textsearch.BlogPost;