jMBS
is open source application, Currently allows to create a mini platform for a local social network.
How it works?
Users can register using the Client GUI, each user can writes messages, and follows other users, participate to one or more projects.
Get Code Source:
You can get a copy of the repository using the public git
1
$ git clone git://github.com/cyounes/jmbs.git
Build jMBS
First, you need to create a new PostgreSQL database, use the latest version of SQL script included in the Server/SQL/
directory.
Next you need to configure jMBS to connect to Database. to do this you could edit the db.connect
file.
Build Server:
- You need to compile the RMI project innorder to compile the server project.
1 2
$ cd /PATH/TO/JMBS/DIRECTORY/RMI/ $ mvn clean compile install
- Compile the server maven project
1 2
$ cd /PATH/TO/JMBS/DIRECTORY/Server/ $ mvn clean assembly:assembly
Build Client:
1
2
$ cd /PATH/TO/JMBS/DIRECTORY/Client/
$ mvn clean assembly:assembly -Dmaven.test.skip=true
Start jMBS
Server:
1
2
3
$ java -jar \
-Djava.rmi.server.codebase=file:../RMI/target/RMI-0.0.1-SNAPSHOT.jar \
target/Server-jar-with-dependencies.jar
Client:
1
2
$ java -jar -Djava.rmi.server.codebase=file:../RMI/target/RMI-0.0.1-SNAPSHOT.jar \
-Djava.security.policy=target/classes/security.policy target/Client-jar-with-dependencies.jar
Contributors:
TODO:
add some lines to this file to explain how to use jMBSadd JavaDoc link
This project is no more updated