Skip to content
This repository has been archived by the owner on Feb 9, 2018. It is now read-only.

Commit

Permalink
Updated documentation to reflect the changes in
Browse files Browse the repository at this point in the history
@5d3ca492ce94cf38b6a4b4bbc6db727fd00bbcfc
  • Loading branch information
Raptor399 committed Dec 31, 2011
1 parent 5d3ca49 commit 89e32be
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
13 changes: 6 additions & 7 deletions INSTALL.md
Expand Up @@ -25,7 +25,7 @@ download the latest sources and build PMS:

git clone git://github.com/ps3mediaserver/ps3mediaserver.git
cd ps3mediaserver
mvn clean package
mvn package

The result will be built in the "target" directory:

Expand Down Expand Up @@ -95,7 +95,7 @@ PMS is now ready to be built.

8. Compile the latest version of PMS:

mvn clean package
mvn package

The resulting binaries will be built in the "target" directory:

Expand All @@ -113,7 +113,7 @@ These last two commands can easily be automated using a script:

rem build-pms.bat
start /D ps3mediaserver /wait /b git pull
start /D ps3mediaserver /wait /b mvn clean package
start /D ps3mediaserver /wait /b mvn package


(Linux, Mac OSX)
Expand All @@ -122,7 +122,7 @@ These last two commands can easily be automated using a script:
# build-pms.sh
cd ps3mediaserver
git pull
mvn clean package
mvn package


Instructions for developers
Expand Down Expand Up @@ -195,7 +195,7 @@ You can build PMS from Eclipse:

* Create a new run configuration under "Run > Run Configurations...", right
mouse button on "Maven Build", select "New", Name: `Build PMS`, Goals:
`clean package`. Select the tab "JRE" and add the following VM arguments
`package`. Select the tab "JRE" and add the following VM arguments
`-Xmx1500m -XX:MaxPermSize=256m`. Finally, press the "Apply" button.

You will want to run PMS from Eclipse while developing. This is how you do it:
Expand All @@ -204,8 +204,7 @@ You will want to run PMS from Eclipse while developing. This is how you do it:
mouse button on "Maven Build", select "New", Name: `Run PMS`, Base
directory: `${project_loc}`, Goals: "test", Profiles: `run-from-eclipse`.
Select the tab "JRE" and add VM arguments `-Xmx1500m -XX:MaxPermSize=256m`.
Finally, press the "Apply" button. (Note: this will not download the
binaries. Build PMS once to download them before you try to run PMS)
Finally, press the "Apply" button.

You are now ready to start developing!

Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -53,7 +53,7 @@ PMS can be built using the following commands:
cd ps3mediaserver
mvn com.savage7.maven.plugins:maven-external-dependency-plugin:resolve-external
mvn com.savage7.maven.plugins:maven-external-dependency-plugin:install-external
mvn clean package
mvn package

See [INSTALL.md](https://github.com/ps3mediaserver/ps3mediaserver/blob/master/INSTALL.md) for more extensive documentation.

Expand Down

0 comments on commit 89e32be

Please sign in to comment.