I have created a Maven archetype from an existing project. I have even installed the archetype in my local repository and used it to create a new project. Everything went perfect (incredible).
The thing is that I want to distribute this archetype so anybody can install it in his local machine or even deploy to a maven repo in order to use it. I was thinking about distributing the generated the artifact JAR, not the source of my project, and let people install it but it seems like it doesn't install as an archetype or at least it isn't recognized when I try to use it.
I used mvn install:install-file goal to do this.
Is this the best way to do this? Is it posible to distribute this JAR file in order to install it as an archetype? Is the JAR file missing something?
Thanks in advance.
Few clarifications here:
// installs the project to your local repository (jar, archetype, etc.)
mvn install
// AND updates archetype catalog
mvn install archetype:update-local-catalog
// calls plugin archetype goal crawl
mvn archetype:crawl
Crawl goes through Maven repo and CREATES catalog.
If you wish to use archetype interactively, you either need to call if with full coordinates or have it listed in the catalog.
// use local catalog
mvn archetype:generate -DarchetypeCatalog=local
// full coordinate set, my example
mvn archetype:generate -DarchetypeGroupId=pl.lafk -DarchetypeArtifactId=simple-testng-quickstart -DarchetypeVersion=1.0 -DgroupId=pl.lafk -DartifactId=sample-app
When you call mvn deploy
you do all that install does plus push the package to remote repository - if you have it configured.
Link I used was Maven site for plugin: https://maven.apache.org/archetype/archetype-packaging/index.html
Additionally: mvn archetype:help
Hi it is a late response, but I had the same problem that I didn't find a clear instruction how to share an archetype. So I hope that the following will help someone who struggles as lot as I did:
For those looking for more recent info: The way to use an archetype catalog in a custom repository for the current version of the plugin (see date of this comment), is defining in your setting (~.m2/setting.xml in Mac) the repository with id "archetype":
<repository>
<id>archetype</id>
<name>archetype_company_repo</name>
<url>http://your.company.com/nexus/content/repositories/releases/</url>
</repository>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With