Create Java project with Maven archetype squirrelsql-plugin-archetype

This project produces the maven archetype that can be used to generate a SQuirreL Plugin maven project. The project that is produced contains an Example plugin that demonstrates the use of key plugin APIs.

Create a Java Project by archetype squirrelsql-plugin-archetype with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeGroupId="net.sf.squirrel-sql.plugins"   -DarchetypeArtifactId="squirrelsql-plugin-archetype"   -DarchetypeVersion="3.3.0-rc1"   -DinteractiveMode=false 

Details about maven archetype squirrelsql-plugin-archetype

GroupId

GroupId

net.sf.squirrel-sql.plugins
ArtifactId

ArtifactId

squirrelsql-plugin-archetype
Version

Version

3.3.0-rc1
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=net.sf.squirrel-sql.plugins -DarchetypeArtifactId=squirrelsql-plugin-archetype -DarchetypeVersion=3.3.0-rc1 -DinteractiveMode=false