Skip to content

Commit 8f908f7

Browse files
Parent refactor (#6)
* Removed the groupId so we use the parent group id. * Added license header. * corrected urls
1 parent 8e1f09a commit 8f908f7

16 files changed

+81
-88
lines changed

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright © 2017 Jeremy Custenborder ([email protected])
2+
# Copyright © 2016 Jeremy Custenborder ([email protected])
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.

pom.xml

Lines changed: 24 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<?xml version="1.0"?>
12
<!--
23
34
Copyright © 2016 Jeremy Custenborder ([email protected])
@@ -15,55 +16,47 @@
1516
limitations under the License.
1617
1718
-->
18-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19+
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
20+
xmlns="http://maven.apache.org/POM/4.0.0"
21+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2022
<modelVersion>4.0.0</modelVersion>
21-
22-
<prerequisites>
23-
<maven>3.3.0</maven>
24-
</prerequisites>
25-
2623
<parent>
2724
<groupId>com.github.jcustenborder.kafka.connect</groupId>
2825
<artifactId>kafka-connect-parent</artifactId>
2926
<version>0.10.1.0-cp1</version>
3027
</parent>
31-
32-
<groupId>com.github.jcustenborder.kafka.connect</groupId>
3328
<artifactId>kafka-connect-splunk</artifactId>
3429
<version>0.2.0-SNAPSHOT</version>
35-
<packaging>jar</packaging>
36-
<inceptionYear>2016</inceptionYear>
37-
3830
<name>kafka-connect-splunk</name>
39-
4031
<url>https://github.com/jcustenborder/kafka-connect-splunk</url>
41-
42-
<licenses>
43-
<license>
44-
<name>The Apache License, Version 2.0</name>
45-
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
46-
<distribution>repo</distribution>
47-
</license>
48-
</licenses>
49-
32+
<inceptionYear>2016</inceptionYear>
33+
<developers>
34+
<developer>
35+
<name>Jeremy Custenborder</name>
36+
<email>[email protected]</email>
37+
<url>https://github.com/jcustenborder</url>
38+
<roles>
39+
<role>maintainer</role>
40+
</roles>
41+
</developer>
42+
</developers>
43+
<prerequisites>
44+
<maven>3.3.0</maven>
45+
</prerequisites>
5046
<scm>
51-
<url>https://github.com/jcustenborder/kafka-connect-splunk</url>
5247
<connection>scm:git:https://github.com/jcustenborder/kafka-connect-splunk.git</connection>
53-
<developerConnection>scm:git:git://[email protected]:jcustenborder/kafka-connect-splunk.git</developerConnection>
48+
<developerConnection>scm:git:[email protected]:jcustenborder/kafka-connect-splunk.git</developerConnection>
49+
<url>https://github.com/jcustenborder/kafka-connect-splunk</url>
5450
</scm>
55-
5651
<issueManagement>
57-
<url>https://github.com/jcustenborder/kafka-connect-splunk/issues</url>
5852
<system>github</system>
53+
<url>https://github.com/jcustenborder/kafka-connect-splunk/issues</url>
5954
</issueManagement>
60-
6155
<properties>
62-
<jackson.version>2.6.3</jackson.version>
63-
<jetty.version>9.3.10.v20160621</jetty.version>
6456
<jersey.version>1.19.1</jersey.version>
57+
<jetty.version>9.3.10.v20160621</jetty.version>
58+
<jackson.version>2.6.3</jackson.version>
6559
</properties>
66-
6760
<dependencies>
6861
<dependency>
6962
<groupId>org.eclipse.jetty</groupId>
@@ -107,4 +100,4 @@
107100
<version>${jetty.version}</version>
108101
</dependency>
109102
</dependencies>
110-
</project>
103+
</project>

src/main/java/com/github/jcustenborder/kafka/connect/splunk/EventConverter.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/**
22
* Copyright © 2016 Jeremy Custenborder ([email protected])
3-
* <p>
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
7-
* <p>
8-
* http://www.apache.org/licenses/LICENSE-2.0
9-
* <p>
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

src/main/java/com/github/jcustenborder/kafka/connect/splunk/EventIterator.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/**
22
* Copyright © 2016 Jeremy Custenborder ([email protected])
3-
* <p>
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
7-
* <p>
8-
* http://www.apache.org/licenses/LICENSE-2.0
9-
* <p>
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

src/main/java/com/github/jcustenborder/kafka/connect/splunk/EventServlet.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/**
22
* Copyright © 2016 Jeremy Custenborder ([email protected])
3-
* <p>
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
7-
* <p>
8-
* http://www.apache.org/licenses/LICENSE-2.0
9-
* <p>
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

src/main/java/com/github/jcustenborder/kafka/connect/splunk/ObjectMapperFactory.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/**
22
* Copyright © 2016 Jeremy Custenborder ([email protected])
3-
* <p>
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
7-
* <p>
8-
* http://www.apache.org/licenses/LICENSE-2.0
9-
* <p>
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

src/main/java/com/github/jcustenborder/kafka/connect/splunk/SinkRecordContent.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/**
22
* Copyright © 2016 Jeremy Custenborder ([email protected])
3-
* <p>
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
7-
* <p>
8-
* http://www.apache.org/licenses/LICENSE-2.0
9-
* <p>
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

src/main/java/com/github/jcustenborder/kafka/connect/splunk/SplunkHttpSinkTask.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/**
22
* Copyright © 2016 Jeremy Custenborder ([email protected])
3-
* <p>
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
7-
* <p>
8-
* http://www.apache.org/licenses/LICENSE-2.0
9-
* <p>
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

src/main/java/com/github/jcustenborder/kafka/connect/splunk/SplunkHttpSourceTask.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/**
22
* Copyright © 2016 Jeremy Custenborder ([email protected])
3-
* <p>
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
7-
* <p>
8-
* http://www.apache.org/licenses/LICENSE-2.0
9-
* <p>
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

src/test/java/com/github/jcustenborder/kafka/connect/splunk/DateSerializationTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/**
22
* Copyright © 2016 Jeremy Custenborder ([email protected])
3-
* <p>
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
7-
* <p>
8-
* http://www.apache.org/licenses/LICENSE-2.0
9-
* <p>
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

0 commit comments

Comments
 (0)