## page was renamed from Cytoscape_3.0/Maven (Under Construction) = Automate Cytoscape 3 Development with Maven = = Introduction = = Main Contents = == Cytoscape 3 Plugin Archetype == = Appendix = == Develop Your Own Archetype == Creating Maven archetypes for your group is a good way to save your time because once you create a new archetype and share it, you do not have to repeat the same process to develop a same type of projects. === Procedure === 1. Create Maven project by '''''mvn archetype:generate''''' 1. If you use Eclipse, use '''''mvn eclipse:eclipse''''' to generate Eclipse project files 1. Edit contents 1. Install it to your local repository by '''''mvn install''''' 1. Update local repository by '''''mvn archetype:update-local-catalog''''' 1. Now you can use the archetype by '''''mvn archetype:generate -DarchetypeCatalog=local''''' 1. If necessary, you can deploy the archetype and publish it to the world === Reference === * [[http://maven.apache.org/plugins/maven-archetype-plugin/index.html|Maven 2 Archetype Plugin Project]] ----