2016-10-29 21:46:34 +08:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2018-07-12 12:34:54 +05:30
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2016-11-13 23:40:17 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>spring-data-solr</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<name>spring-data-solr</name>
|
2019-02-10 01:47:19 +05:30
|
|
|
<packaging>jar</packaging>
|
2016-11-16 21:39:13 +08:00
|
|
|
|
2017-05-09 22:37:43 +02:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
2018-06-02 20:14:15 +05:30
|
|
|
<artifactId>parent-spring-4</artifactId>
|
2018-07-12 12:34:54 +05:30
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<relativePath>../../parent-spring-4</relativePath>
|
2017-05-12 20:32:54 +02:00
|
|
|
</parent>
|
|
|
|
|
2016-11-13 23:40:17 +08:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-core</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
2017-04-19 16:14:10 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
</exclusion>
|
2017-05-12 20:32:54 +02:00
|
|
|
</exclusions>
|
2016-11-13 23:40:17 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
|
<artifactId>spring-data-solr</artifactId>
|
2016-12-07 19:17:18 +02:00
|
|
|
<version>${spring-data-solr.version}</version>
|
2016-11-13 23:40:17 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2018-04-26 18:07:47 +05:30
|
|
|
|
|
|
|
<properties>
|
2018-04-26 12:20:35 +05:30
|
|
|
<spring-data-solr.version>2.0.5.RELEASE</spring-data-solr.version>
|
|
|
|
</properties>
|
2016-11-12 12:21:46 +08:00
|
|
|
|
2016-11-16 21:39:13 +08:00
|
|
|
</project>
|