kstreamplify-core: core Kafka Streams functionality.kstreamplify-core-test: test utilities and base classes for testing topologies.kstreamplify-spring-boot: Spring Boot autoconfiguration and web services.
- Build with
mvn clean package. - Run the tests with
mvn test. - Run
mvn spotless:applybefore committing to apply Palantir Java Format.
- Target Java 17.
- Code follows Palantir Java Format.
- Add minimal Javadoc to every method in production code (
src/main), including@Overridemethods, with descriptions for parameters and return values. Start each description with an uppercase letter.
- Name test classes
<ClassName>Test. - Name unit tests with the "should..." convention (e.g.
shouldNotRegisterPropertiesWhenNull). - Use JUnit Jupiter assertions (
org.junit.jupiter.api.Assertions). - Use Mockito with
@ExtendWith(MockitoExtension.class). - Use Testcontainers for Kafka integration tests.