Skip to content

Commit

Permalink
Merge pull request #1 from jaredpetersen/add-maven-central-badge
Browse files Browse the repository at this point in the history
add maven central badge
  • Loading branch information
jaredpetersen authored Jan 27, 2019
2 parents 28055ed + dd1824f commit 3f2143a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Kafka Connect ArangoDB Connector
[![Build Status](https://travis-ci.org/jaredpetersen/kafka-connect-arangodb.svg?branch=master)](https://travis-ci.org/jaredpetersen/kafka-connect-arangodb)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.github.jaredpetersen/kafka-connect-arangodb/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.github.jaredpetersen/kafka-connect-arangodb)

Kafka Connect Sink Connector for ArangoDB

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>io.github.jaredpetersen</groupId>
<artifactId>kafka-connect-arangodb</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
<packaging>jar</packaging>

<name>kafka-connect-arangodb</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class ArangoDbSinkConnectorTests {
@Test
public void versionReturnsVersion() {
final SinkConnector connector = new ArangoDbSinkConnector();
assertEquals("1.0.1", connector.version());
assertEquals("1.0.2", connector.version());
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class ArangoDbSinkTaskTests {
@Test
public void versionReturnsVersion() {
final SinkTask task = new ArangoDbSinkTask();
assertEquals("1.0.1", task.version());
assertEquals("1.0.2", task.version());
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ public void constructorDoesNothing() {
public void loadLoadsProperties() {
final Properties properties = PropertiesLoader.load();

assertEquals("1.0.1", properties.get("version"));
assertEquals("1.0.2", properties.get("version"));
}
}

0 comments on commit 3f2143a

Please sign in to comment.