Create Java project with Maven archetype ksql-udf-quickstart

An archetype for building KSQL UDFs and UDAFs

Create a Java Project by archetype ksql-udf-quickstart with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DudfName="My-udfName"   -DudfDescription="My-udfDescription"   -DarchetypeGroupId="com.mitchseymour"   -DarchetypeArtifactId="ksql-udf-quickstart"   -DarchetypeVersion="0.1.0"   -DinteractiveMode=false 

Required parameters for generate java project:

udfName
validationRegex: none
udfDescription
validationRegex: none

Details about maven archetype ksql-udf-quickstart

GroupId

GroupId

com.mitchseymour
ArtifactId

ArtifactId

ksql-udf-quickstart
Version

Version

0.1.0
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=com.mitchseymour -DarchetypeArtifactId=ksql-udf-quickstart -DarchetypeVersion=0.1.0 -DinteractiveMode=false