commit f7bde10866bbaa0f541f7d0902ca0b258470480b Author: L_DelOff Date: Sat Jun 1 11:35:30 2024 +0300 First commit diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..1a6441f --- /dev/null +++ b/pom.xml @@ -0,0 +1,54 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starter-parent + 3.2.6 + + + ru.ldeloff + DemoKafkaStream + 0.0.1-SNAPSHOT + DemoKafkaStream + DemoKafkaStream + + 22 + + + + org.springframework.boot + spring-boot-starter + + + + org.projectlombok + lombok + true + + + org.springframework.boot + spring-boot-starter-test + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + org.projectlombok + lombok + + + + + + + + diff --git a/src/main/java/ru/ldeloff/demokafkastream/DemoKafkaStreamApplication.java b/src/main/java/ru/ldeloff/demokafkastream/DemoKafkaStreamApplication.java new file mode 100644 index 0000000..10568fb --- /dev/null +++ b/src/main/java/ru/ldeloff/demokafkastream/DemoKafkaStreamApplication.java @@ -0,0 +1,13 @@ +package ru.ldeloff.demokafkastream; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class DemoKafkaStreamApplication { + + public static void main(String[] args) { + SpringApplication.run(DemoKafkaStreamApplication.class, args); + } + +} diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties new file mode 100644 index 0000000..7237ad1 --- /dev/null +++ b/src/main/resources/application.properties @@ -0,0 +1 @@ +spring.application.name=DemoKafkaStream diff --git a/src/test/java/ru/ldeloff/demokafkastream/DemoKafkaStreamApplicationTests.java b/src/test/java/ru/ldeloff/demokafkastream/DemoKafkaStreamApplicationTests.java new file mode 100644 index 0000000..970df1f --- /dev/null +++ b/src/test/java/ru/ldeloff/demokafkastream/DemoKafkaStreamApplicationTests.java @@ -0,0 +1,13 @@ +package ru.ldeloff.demokafkastream; + +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest +class DemoKafkaStreamApplicationTests { + + @Test + void contextLoads() { + } + +}