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"   -DarchetypeGroupId="com.mitchseymour"   -DarchetypeArtifactId="ksql-udf-quickstart"   -DarchetypeVersion="0.1.1"   -DinteractiveMode=false 

Details about maven archetype ksql-udf-quickstart

GroupId

GroupId

com.mitchseymour
ArtifactId

ArtifactId

ksql-udf-quickstart
Version

Version

0.1.1
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.1 -DinteractiveMode=false