Skip to content

Commit eb5fb37

Browse files
Bump to 1.0.0 (#2)
1 parent e233164 commit eb5fb37

File tree

6 files changed

+63
-77
lines changed

6 files changed

+63
-77
lines changed

LICENSE

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
Apache License
23
Version 2.0, January 2004
34
http://www.apache.org/licenses/
@@ -178,15 +179,15 @@
178179
APPENDIX: How to apply the Apache License to your work.
179180

180181
To apply the Apache License to your work, attach the following
181-
boilerplate notice, with the fields enclosed by brackets "{}"
182+
boilerplate notice, with the fields enclosed by brackets "[]"
182183
replaced with your own identifying information. (Don't include
183184
the brackets!) The text should be enclosed in the appropriate
184185
comment syntax for the file format. We also recommend that a
185186
file or class name and description of purpose be included on the
186187
same "printed page" as the copyright notice for easier
187188
identification within third-party archives.
188189

189-
Copyright {yyyy} {name of copyright owner}
190+
Copyright [yyyy] [name of copyright owner]
190191

191192
Licensed under the Apache License, Version 2.0 (the "License");
192193
you may not use this file except in compliance with the License.
@@ -198,4 +199,4 @@
198199
distributed under the License is distributed on an "AS IS" BASIS,
199200
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200201
See the License for the specific language governing permissions and
201-
limitations under the License.
202+
limitations under the License.

docs/introduction.rst renamed to docs/transformations.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,4 @@ The Common Transforms project is a collection of common transformations that can
1919
:hidden:
2020

2121
schemas
22+
info

pom.xml

Lines changed: 54 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -1,72 +1,56 @@
11
<?xml version="1.0"?>
2-
<!--
3-
4-
Copyright © 2017 Jeremy Custenborder ([email protected])
5-
6-
Licensed under the Apache License, Version 2.0 (the "License");
7-
you may not use this file except in compliance with the License.
8-
You may obtain a copy of the License at
9-
10-
http://www.apache.org/licenses/LICENSE-2.0
11-
12-
Unless required by applicable law or agreed to in writing, software
13-
distributed under the License is distributed on an "AS IS" BASIS,
14-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15-
See the License for the specific language governing permissions and
16-
limitations under the License.
17-
18-
-->
19-
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
20-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
21-
<modelVersion>4.0.0</modelVersion>
22-
<parent>
23-
<groupId>com.github.jcustenborder.kafka.connect</groupId>
24-
<artifactId>kafka-connect-parent</artifactId>
25-
<version>0.11.0.0-cp4</version>
26-
</parent>
27-
<artifactId>kafka-connect-transform-common</artifactId>
28-
<version>0.1.0-SNAPSHOT</version>
29-
<name>kafka-connect-transform-cef</name>
30-
<url>https://github.com/jcustenborder/kafka-connect-transform-common</url>
31-
<inceptionYear>2017</inceptionYear>
32-
<licenses>
33-
<license>
34-
<name>Apache License 2.0</name>
35-
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
36-
<distribution>repo</distribution>
37-
</license>
38-
</licenses>
39-
<developers>
40-
<developer>
41-
<name>Jeremy Custenborder</name>
42-
<email>[email protected]</email>
43-
<url>https://github.com/jcustenborder</url>
44-
<roles>
45-
<role>maintainer</role>
46-
</roles>
47-
</developer>
48-
</developers>
49-
<scm>
50-
<connection>scm:git:https://github.com/jcustenborder/kafka-connect-transform-cef.git</connection>
51-
<developerConnection>scm:git:[email protected]:jcustenborder/kafka-connect-transform-cef.git</developerConnection>
52-
<url>https://github.com/jcustenborder/kafka-connect-transform-cef</url>
53-
</scm>
54-
<issueManagement>
55-
<system>github</system>
56-
<url>https://github.com/jcustenborder/kafka-connect-transform-cef/issues</url>
57-
</issueManagement>
58-
<dependencies>
59-
<dependency>
60-
<groupId>org.reflections</groupId>
61-
<artifactId>reflections</artifactId>
62-
<version>0.9.10</version>
63-
<scope>test</scope>
64-
</dependency>
65-
<dependency>
66-
<groupId>com.github.jcustenborder.kafka.connect</groupId>
67-
<artifactId>connect-utils-testing-data</artifactId>
68-
<version>[0.3.33,0.3.1000)</version>
69-
<scope>test</scope>
70-
</dependency>
71-
</dependencies>
2+
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
3+
xmlns="http://maven.apache.org/POM/4.0.0"
4+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5+
<modelVersion>4.0.0</modelVersion>
6+
<parent>
7+
<groupId>com.github.jcustenborder.kafka.connect</groupId>
8+
<artifactId>kafka-connect-parent</artifactId>
9+
<version>1.0.0</version>
10+
</parent>
11+
<artifactId>kafka-connect-transform-common</artifactId>
12+
<version>0.1.0-SNAPSHOT</version>
13+
<name>kafka-connect-transform-cef</name>
14+
<url>https://github.com/jcustenborder/kafka-connect-transform-common</url>
15+
<inceptionYear>2017</inceptionYear>
16+
<licenses>
17+
<license>
18+
<name>Apache License 2.0</name>
19+
<url>https:/github.com/jcustenborder/kafka-connect-transform-common/LICENSE</url>
20+
<distribution>repo</distribution>
21+
</license>
22+
</licenses>
23+
<developers>
24+
<developer>
25+
<id>jcustenborder</id>
26+
<name>Jeremy Custenborder</name>
27+
<url>https://github.com/jcustenborder</url>
28+
<roles>
29+
<role>Committer</role>
30+
</roles>
31+
</developer>
32+
</developers>
33+
<scm>
34+
<connection>scm:git:https://github.com/jcustenborder/kafka-connect-transform-common.git</connection>
35+
<developerConnection>scm:git:[email protected]:jcustenborder/kafka-connect-transform-common.git</developerConnection>
36+
<url>https://github.com/jcustenborder/kafka-connect-transform-common</url>
37+
</scm>
38+
<issueManagement>
39+
<system>github</system>
40+
<url>https://github.com/jcustenborder/kafka-connect-transform-common/issues</url>
41+
</issueManagement>
42+
<dependencies>
43+
<dependency>
44+
<groupId>org.reflections</groupId>
45+
<artifactId>reflections</artifactId>
46+
<version>0.9.10</version>
47+
<scope>test</scope>
48+
</dependency>
49+
<dependency>
50+
<groupId>com.github.jcustenborder.kafka.connect</groupId>
51+
<artifactId>connect-utils-testing-data</artifactId>
52+
<version>[0.3.33,0.3.1000)</version>
53+
<scope>test</scope>
54+
</dependency>
55+
</dependencies>
7256
</project>

src/main/java/com/github/jcustenborder/kafka/connect/transform/common/PatternRenameConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
77
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
8+
* http://www.apache.org/licenses/LICENSE-2.0
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,

src/test/java/com/github/jcustenborder/kafka/connect/transform/common/DocumentationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
77
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
8+
* http://www.apache.org/licenses/LICENSE-2.0
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,

src/test/java/com/github/jcustenborder/kafka/connect/transform/common/GenericAssertions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/**
2-
* Copyright © 2016 Jeremy Custenborder ([email protected])
2+
* Copyright © 2017 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.
66
* You may obtain a copy of the License at
77
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
8+
* http://www.apache.org/licenses/LICENSE-2.0
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,

0 commit comments

Comments
 (0)