Changes between Initial Version and Version 1 of DeveloperGuide


Ignore:
Timestamp:
Feb 24, 2015, 11:42:30 AM (9 years ago)
Author:
jurzua
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuide

    v1 v1  
     1== Setup of Openmind ==
     2In order to extend or to fix the ismi-server, we must previouly setup the openmind-project.
     3Follow the following steps to setup this project:
     4
     51. Checkout the source code
     6svn co https://it-dev.mpiwg-berlin.mpg.de/svn/openmind/
     7
     8
     92. Install the framework called „hashMapping“ in your local maven repository.
     10mvn install:install-file -Dfile=~/openmind/lib/hasMapping.jar -DgroupId=cl.talca -DartifactId=hashMapping -Dversion=1.0 -Dpackaging=jar
     11
     123. Install the openmind framework in your local maven repository.
     13mvn clean compile assembly:single
     14cp target/openmind-1.0.0-jar-with-dependencies.jar /Users/jurzua/om4.jar
     15mvn install:install-file -Dfile=/Users/jurzua/om4.jar -DgroupId=de.mpiwg.openmind -DartifactId=openmind -Dversion=1.0.0 -Dpackaging=jar
     16
     17== Setup of ISMI-Server ==
     18Now, you will be able to setup the ismi-server.
     19
     201. Checkout the source code:
     21svn co https://it-dev.mpiwg-berlin.mpg.de/svn/ismi-richfaces/
     22
     232. Database Setup
     24The ismi-server stores the data in a mysql database. The connection to the database is configured in ismi-richfaces/src/main/resources/hibernate.cfg.xml.
     25Old backups of the database can be found in ismi-richfaces/docs/db. You can import one of the backups to test your application.
     26
     273. Run ismi-server:
     28mvn tomcat7:run
     29
     304. Release:
     31mvn clean package