Versions Compared

Key

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

Table of Contents

⛔ Requirements

Before to proceed with the development of DSpace, you need some software requirements: Installing DSpace#BackendRequirements (stop at the deploy feature, because we don't need to deploy anything (wink)).

...

  1. Locate the pom.xml file of the server-boot project

  2. Right click, and check for Run As Maven Build or just the Maven entry

  3. Find or type the maven goal: spring-boot:run (inside the plugin-goal list)

    1. Optional - You can override the parameters by using the command-line parameter -Dspring-boot.run.arguments.
      Here is resumed the full command line instructions that will be used by the IDE (including extra parameters)

      Code Block
      languagebash
      mvn spring-boot:run -Dspring-boot.run.arguments="--dspace.dir=/path/to/install/folder/ --logging.config=file:///path/to/install/folder/config/log4j2-console.xml

      Image Removed


  4. Congratulations 🥳 !
    Now you should have a running configuration that is using Maven, just press on RUN 🤞!

...