Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
bebbe8c
Apache Solr Storage plugin
sudipmukherjee Aug 3, 2015
892ee85
Apache Solr Storage plugin
sudipmukherjee Aug 4, 2015
26ae6f7
Apache solr storage plugin
sudipmukherjee Aug 6, 2015
3209834
Apache solr storage plugin
sudipmukherjee Aug 6, 2015
9b76c12
Apache Solr Storage plugin
sudipmukherjee Aug 10, 2015
232c13b
Apache Solr Storage Plugin
sudipmukherjee Aug 10, 2015
30ab01a
Apache solr Storage plugin
sudipmukherjee Aug 10, 2015
ee491c9
Apache Solr Storage
sudipmukherjee Aug 10, 2015
39498c9
Apache Solr Storage plugin
sudipmukherjee Aug 10, 2015
9ee6a3b
Apache Solr Storage plugin
sudipmukherjee Aug 10, 2015
1532706
Apache Solr Storage plugin
sudipmukherjee Aug 11, 2015
b5f5dac
Apache Solr Storage plugin
sudipmukherjee Aug 11, 2015
04f288d
Solr Storage plugin
sudipmukherjee Aug 27, 2015
d59b873
Solr Storage Plugin
sudipmukherjee Aug 27, 2015
30435a1
Solr Storage Plugin
sudipmukherjee Aug 27, 2015
03ab550
Apache Solr storage plugin
sudipmukherjee Sep 4, 2015
7014bba
Initial code check-in
sudipmukherjee Sep 29, 2015
a3f49d5
Solr storage plugin
sudipmukherjee Oct 3, 2015
774b088
code cleanup
sudipmukherjee Oct 13, 2015
b42e09d
Initial Code check-in
sudipmukherjee Oct 14, 2015
ba6fd65
remove unused classes
sudipmukherjee Oct 14, 2015
ffaedba
Solr Storage Plugin
sudipmukherjee Nov 20, 2015
19886c1
[DRILL-4294] InfoSchema is not returning column metadata if the query…
sudipmukherjee Jan 22, 2016
e85ebbf
Merge remote-tracking branch 'refs/remotes/origin/solrstorageplugin'
sudipmukherjee Jan 22, 2016
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 32 additions & 36 deletions contrib/pom.xml
Original file line number Diff line number Diff line change
@@ -1,41 +1,37 @@
<?xml version="1.0"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor
license agreements. See the NOTICE file distributed with this work for additional
information regarding copyright ownership. The ASF licenses this file to
You under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of
the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
by applicable law or agreed to in writing, software distributed under the
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
OF ANY KIND, either express or implied. See the License for the specific
language governing permissions and limitations under the License. -->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>drill-root</artifactId>
<groupId>org.apache.drill</groupId>
<version>1.2.0-SNAPSHOT</version>
</parent>

http://www.apache.org/licenses/LICENSE-2.0
<groupId>org.apache.drill.contrib</groupId>
<artifactId>drill-contrib-parent</artifactId>
<name>contrib/Parent Pom</name>
<packaging>pom</packaging>

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>drill-root</artifactId>
<groupId>org.apache.drill</groupId>
<version>1.2.0-SNAPSHOT</version>
</parent>
<dependencies>
</dependencies>

<groupId>org.apache.drill.contrib</groupId>
<artifactId>drill-contrib-parent</artifactId>
<name>contrib/Parent Pom</name>
<packaging>pom</packaging>

<dependencies>
</dependencies>

<modules>
<module>storage-hbase</module>
<module>storage-hive</module>
<module>storage-mongo</module>
<module>sqlline</module>
<module>data</module>
</modules>
<modules>
<module>storage-hbase</module>
<module>storage-hive</module>
<module>storage-mongo</module>
<module>storage-solr</module>
<module>sqlline</module>
<module>data</module>
</modules>
</project>
63 changes: 63 additions & 0 deletions contrib/storage-solr/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
<?xml version="1.0"?>
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor
license agreements. See the NOTICE file distributed with this work for additional
information regarding copyright ownership. The ASF licenses this file to
You under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of
the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
by applicable law or agreed to in writing, software distributed under the
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
OF ANY KIND, either express or implied. See the License for the specific
language governing permissions and limitations under the License. -->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.drill.contrib</groupId>
<artifactId>drill-contrib-parent</artifactId>
<version>1.2.0-SNAPSHOT</version>
</parent>
<!-- <groupId>org.apache.drill.exec</groupId> -->
<artifactId>drill-storage-solr</artifactId>

<name>contrib/solr-storage-plugin</name>

<dependencies>

<dependency>
<groupId>org.apache.drill.exec</groupId>
<artifactId>drill-java-exec</artifactId>
<version>${project.version}</version>
<exclusions>
<exclusion>
<artifactId>hadoop-common</artifactId>
<groupId>org.apache.hadoop</groupId>
</exclusion>
<exclusion>
<artifactId>hadoop-client</artifactId>
<groupId>org.apache.hadoop</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.solr</groupId>
<artifactId>solr-solrj</artifactId>
<version>5.2.1</version>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>org.apache.drill.exec</groupId>
<artifactId>drill-java-exec</artifactId>
<version>${project.version}</version>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.drill</groupId>
<artifactId>drill-common</artifactId>
<classifier>tests</classifier>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
Loading