Skip to content

Commit

Permalink
init: Init project.
Browse files Browse the repository at this point in the history
Signed-off-by: photowey <[email protected]>
  • Loading branch information
photowey committed Apr 5, 2024
1 parent 3523a9f commit d922eb7
Show file tree
Hide file tree
Showing 19 changed files with 550 additions and 2 deletions.
30 changes: 30 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**
!**/src/test/**

### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache

### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr

### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/

### VS Code ###
.vscode/
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# kafka-plus
An extender of Apache Kafka (the "Kafka").
# `kafka-plus`

An extender of Apache Kafka (the "Kafka").
13 changes: 13 additions & 0 deletions codequality/HEADER
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Copyright © $today.year the original author or authors.

Licensed 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.
27 changes: 27 additions & 0 deletions kafka-plus-core/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<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>io.github.photowey</groupId>
<artifactId>kafka-plus</artifactId>
<version>3.7.0.1.0-SNAPSHOT</version>
</parent>

<artifactId>kafka-plus-core</artifactId>

<name>${project.groupId}:${project.artifactId}</name>
<description>The base core module of project kafka-plus</description>

<!-- @formatter:off -->
<properties>
</properties>
<!-- @formatter:on -->

<dependencies>
</dependencies>


</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/*
* Copyright © 2024 the original author or authors.
*
* Licensed 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.
*/
package io.github.photowey.kafka.plus.core.domain.consumer.builder;

/**
* {@code ConsumerBuilder}
*
* @author photowey
* @date 2024/04/05
* @since 1.0.0
*/
public interface ConsumerBuilder {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/*
* Copyright © 2024 the original author or authors.
*
* Licensed 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.
*/
package io.github.photowey.kafka.plus.core.domain.producer.builder;

/**
* {@code ProducerBuilder}
*
* @author photowey
* @date 2024/04/05
* @since 1.0.0
*/
public interface ProducerBuilder {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
/*
* Copyright © 2024 the original author or authors.
*
* Licensed 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.
*/
package io.github.photowey.kafka.plus.core.enums;

/**
* {@code Kafka}
*
* @author photowey
* @date 2024/04/05
* @since 1.0.0
*/
public enum Kafka {

;

public enum Mode {

STANDALONE,
CLUSTER,

;

}

public enum Consumer {

;
}

public enum Producer {

;
}

}
Empty file.
Empty file.
Empty file.
27 changes: 27 additions & 0 deletions kafka-plus-engine/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<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>io.github.photowey</groupId>
<artifactId>kafka-plus</artifactId>
<version>3.7.0.1.0-SNAPSHOT</version>
</parent>

<artifactId>kafka-plus-engine</artifactId>

<name>${project.groupId}:${project.artifactId}</name>
<description>The engine module of project kafka-plus</description>

<!-- @formatter:off -->
<properties>
</properties>
<!-- @formatter:on -->

<dependencies>
</dependencies>


</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/*
* Copyright © 2024 the original author or authors.
*
* Licensed 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.
*/
package io.github.photowey.kafka.plus.engine;

/**
* {@code Engine}
*
* @author photowey
* @date 2024/04/05
* @since 1.0.0
*/
public interface Engine {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/*
* Copyright © 2024 the original author or authors.
*
* Licensed 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.
*/
package io.github.photowey.kafka.plus.engine;

/**
* {@code KafkaEngine}
*
* @author photowey
* @date 2024/04/05
* @since 1.0.0
*/
public interface KafkaEngine extends Engine {
}
Empty file.
Empty file.
Empty file.
Loading

0 comments on commit d922eb7

Please sign in to comment.