Skip to content

Commit

Permalink
Bump versions (#29)
Browse files Browse the repository at this point in the history
* Updated pom to use parent version 2.1.1-cp1. Bumped Solr version to 8.2.0. Fixes #28.

* Filter out errors from reflections.
  • Loading branch information
jcustenborder authored Aug 14, 2019
1 parent 6a68511 commit ab6714f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>com.github.jcustenborder.kafka.connect</groupId>
<artifactId>kafka-connect-parent</artifactId>
<version>2.0.0</version>
<version>2.1.1-cp1</version>
</parent>
<artifactId>kafka-connect-solr</artifactId>
<version>0.1-SNAPSHOT</version>
Expand Down Expand Up @@ -51,7 +51,7 @@
<url>https://github.com/jcustenborder/kafka-connect-solr/issues</url>
</issueManagement>
<properties>
<solr.version>7.5.0</solr.version>
<solr.version>8.2.0</solr.version>
</properties>
<dependencies>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,22 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
@Introduction("\n" +
@Introduction(
"The SOLR connector is a high speed mechanism for writing data to `Apache Solr " +
"<http://lucene.apache.org/solr/>`_.")
"<http://lucene.apache.org/solr/>`_.")
@Title("Apache Solr")
@DocumentationTip("If you are seeing error messages such as `Invalid version " +
"(expected 2, but 60) or the data in not in 'javabin' format` compare the version of " +
"the Solr Server against the version of solrj the connector is compiled with. This error " +
"message is most likely due to a version mismatch between the server and solrj. To address this " +
"try replacing the solr-solrj-*.jar packaged with the connector with the version that " +
"matches the Solr server you are connecting to.")
@PluginOwner("jcustenborder")
@PluginName("kafka-connect-solr")
package com.github.jcustenborder.kafka.connect.solr;

import com.github.jcustenborder.kafka.connect.utils.config.DocumentationTip;
import com.github.jcustenborder.kafka.connect.utils.config.Introduction;
import com.github.jcustenborder.kafka.connect.utils.config.PluginName;
import com.github.jcustenborder.kafka.connect.utils.config.PluginOwner;
import com.github.jcustenborder.kafka.connect.utils.config.Title;
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,5 @@
import com.github.jcustenborder.kafka.connect.utils.BaseDocumentationTest;

public class DocumentationTest extends BaseDocumentationTest {
@Override
protected String[] packages() {
return new String[]{this.getClass().getPackage().getName()};
}

}
1 change: 1 addition & 0 deletions src/test/resources/logback.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
</appender>

<logger name="com.github.jcustenborder.kafka.connect.solr" level="TRACE" />
<logger name="org.reflections.Reflections" level="ERROR" />

<root level="INFO">
<appender-ref ref="STDOUT" />
Expand Down

0 comments on commit ab6714f

Please sign in to comment.