|
@ -83,6 +83,9 @@
|
|
|
<version.jest>2.4.0</version.jest>
|
|
|
<version.hbase-client>1.1.1</version.hbase-client>
|
|
|
<version.spring-data-hadoop>2.3.0.RELEASE</version.spring-data-hadoop>
|
|
|
<version.joda-time>2.8.2</version.joda-time>
|
|
|
<version.solr>5.5.1</version.solr>
|
|
|
<version.spring-data.solr>2.1.8.RELEASE</version.spring-data.solr>
|
|
|
</properties>
|
|
|
<!--dependencyManagement作用子配置不写版本默认继承父配置-->
|
|
|
<dependencyManagement>
|
|
@ -631,6 +634,41 @@
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
<!-- hbase end-->
|
|
|
|
|
|
<!--solr start-->
|
|
|
<dependency>
|
|
|
<groupId>joda-time</groupId>
|
|
|
<artifactId>joda-time</artifactId>
|
|
|
<version>${version.joda-time}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.solr</groupId>
|
|
|
<artifactId>solr-core</artifactId>
|
|
|
<version>${version.solr}</version>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<groupId>commons-lang</groupId>
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.solr</groupId>
|
|
|
<artifactId>solr-solrj</artifactId>
|
|
|
<version>${version.solr}</version>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<groupId>commons-lang</groupId>
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
<artifactId>spring-data-solr</artifactId>
|
|
|
<version>${version.spring-data.solr}</version>
|
|
|
</dependency>
|
|
|
<!--solr end-->
|
|
|
</dependencies>
|
|
|
|
|
|
|