Difference between revisions of "Quick start for Protege Plugin with maven"

From Protege Wiki
Jump to: navigation, search
(Created page with " =Quick-start a Protege 5 plugin with maven and git= You can very quickly start a new plugin using maven and git. The strategy is to use git to clone a project that has a ve...")
 
(Quick-start a Protege 5 plugin with maven and git)
Line 2: Line 2:
 
=Quick-start a Protege 5 plugin with maven and git=
 
=Quick-start a Protege 5 plugin with maven and git=
  
You can very quickly start a new plugin using maven and git.  The strategy is to use git to clone a project that has a very [https://github.com/stdotjohn/org.protege.plugin.skeleton minimal plugin skeleton] and then to start modifying this project to make it your own.  The fir
+
You can very quickly start a new plugin using maven and git.  The strategy is to use git to clone a project that has a very [https://github.com/stdotjohn/org.protege.plugin.template minimal plugin template] and then to start modifying this project to make it your own.  The first step is to clone the template into a project directory of your choice:
 +
<pre>
 +
      git clone https://github.com/stdotjohn/ort.protege.plugin.template mv.plugin
 +
</pre>

Revision as of 07:42, September 1, 2013

Quick-start a Protege 5 plugin with maven and git

You can very quickly start a new plugin using maven and git. The strategy is to use git to clone a project that has a very minimal plugin template and then to start modifying this project to make it your own. The first step is to clone the template into a project directory of your choice:

      git clone https://github.com/stdotjohn/ort.protege.plugin.template mv.plugin