Go to file
Matias Arriola 76ff1cc83d Merged in feature/docker-docs (pull request #7)
Add docker instructions and minor docs additions

* Add docker folder with docs and docker-compose
Add troubleshooting and docker sections to main README

Approved-by: Paulo Veiga
2021-06-10 00:13:26 +00:00
config/database Update admin password for testing purposes. 2020-11-22 14:41:33 -08:00
core-js Bump up version. 2020-11-23 19:39:34 -08:00
distribution Initial commit 2020-11-07 11:56:38 -08:00
docker Merged in feature/docker-docs (pull request #7) 2021-06-10 00:13:26 +00:00
mindplot Bump up version. 2020-11-23 19:39:34 -08:00
web2d Bump up version. 2020-11-23 19:39:34 -08:00
wise-editor Bump up version. 2020-11-23 19:39:34 -08:00
wise-webapp Remove openid 2020-11-28 15:48:40 -08:00
.gitignore Fix create user error. 2020-11-22 17:41:20 -08:00
bitbucket-pipelines.yml Change pipeline to install 2020-11-23 18:30:21 -08:00
license.txt Remove unsed files. 2014-01-25 15:47:44 -03:00
phantomjsdriver.log Return to java 1.7. Why ?. Spring does not like it. 2015-11-02 08:57:21 -03:00
pom.xml Bump up version. 2020-11-23 19:39:34 -08:00
Procfile Minor fix. 2012-08-25 11:48:45 -03:00
README.md Merged in feature/docker-docs (pull request #7) 2021-06-10 00:13:26 +00:00
setup.sh Fix Jetty hangs during install. 2014-01-25 15:27:03 -03:00

Project Information

The goal of this project is to provide a high quality product that can be deployed by educational and academic institutions, private and public companies and anyone who needs to have a mindmapping application. WiseMapping is based on the same code source supporting WiseMapping.com. More info: www.wisemapping.org

Compiling and Running

Prerequisites

The following products must be installed:

* Java Development Kit 8 or higher ([http://www.oracle.com/technetwork/java/javase/downloads/index.html])
* Maven 3.x or higher ([http://maven.apache.org/])

Compiling

WiseMapping uses Maven as packaging and project management. It's composed of 5 maven sub-modules:

* core-js: Utilities JavaScript classes
* web2d: JavaScript 2D SVG abstraction library used by the mind map editor
* mindplot: JavaScript mindmap designer core
* wise-editor: Mindmap Editor standalone distribution
* wise-webapp: J2EE web application 

The full compilation of the project can be performed executing within :

mvn package

Once this command is execute, the file /wise-webapp/target/wisemapping*.war will be generated.

Compiling and running with docker-compose

Check out the docker section

Testing

The previously generated war can be deployed locally executing within the directory /wise-webapp the following command:

cd wise-webapp;mvn jetty:run-war

This will start the application on the URL: [http://localhost:8080/] using file based database..

User: test@wisemapping.org Password: test

Running the JS only version

Start by creating the .zip file:

mvn assembly:assembly -Dmaven.test.skip=true

To test the javascript frontend you then do:

ruby -rwebrick -e 'WEBrick::HTTPServer.new(:Port=>8000,:DocumentRoot=>".").start'

Now open a browser using the URL http://localhost:8000/wise-editor/src/main/webapp/

Troubleshooting

mvn package fails with the error java.lang.UnsatisfiedLinkError: Can't load library: /usr/lib/jvm/java-11-openjdk-amd64/lib/libawt_xawt.so in Ubuntu
Make sure you have the jdk installed: `sudo apt-get install openjdk-11-jdk`
mvn package does not generate the wisemapping.war file
Run `mvn clean install -DskipTests`

Maintenance

Members

Founders

Individual Controbutors

Past Individual Contributors

  • Ignacio Manzano
  • Nicolas Damonte

License

The source code is Licensed under the WiseMapping Open License, Version 1.0 (the “License”); You may obtain a copy of the License at: [https://wisemapping.atlassian.net/wiki/display/WS/License]