Changes between Version 7 and Version 8 of Malted/PluginDevelopmentNotes


Ignore:
Timestamp:
20.09.2013 10:55:48 (11 years ago)
Author:
Malte
Comment:

added note about maven dependency management and plugin parent pom

Legend:

Unmodified
Added
Removed
Modified
  • Malted/PluginDevelopmentNotes

    v7 v8  
    1212 
    1313== Working on DeepaMehta's server-side, resp. on your model == 
     14 
     15=== Building plugins from source / maven usage === 
     16 
     17If you build everything from source {{{mvn clean install}}} is what you need to satisfy a projects maven dependencies. 
     18 
     19This is a plugins parent pom you want to use (when developing a plugin): 
     20 
     21{{{ 
     22    <parent> 
     23        <groupId>de.deepamehta</groupId> 
     24        <artifactId>deepamehta-plugin-parent</artifactId> 
     25        <version>4.1.1-SNAPSHOT</version> 
     26    </parent> 
     27}}} 
    1428 
    1529=== Working on server-side with dms (ApplicationService ===