Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Maven based Addon dependecy scenarios

Image Modified

Simple Addon (A)

...

  • In the main dspace projects pom file (
    Code Block
    trunk/dspace/pom.xml
    ) one can outline the modules that are to be included into the projects build process.
Code Block

   <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>org.dspace</groupId>
        <artifactId>dspace</artifactId>
        <name>DSpace Installation Project</name>
        <version>1.5-SNAPSHOT</version>
        <packaging>pom</packaging>
        ...
        <modules>
             <module>../dspace-oai</module>
             <module>../dspace-jspui</module>
             <module>../dspace-xmlui</module>
             <module>../dspace-lni</module>
        </modules>
        ...

...