Versions Compared

Key

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

...

Code Block
titleSkips the Sencha Javascript Minification
C:\ssp\SSP-rel-1-1-0> mvn -PSKIP_SENCHA clean install

 

To build ssp as a developer stand alone environment that does not require uPortal;

  • Edit $SSP_CONFIGDIR/ssp-config.properties to set it as a standalone environment instead of a uportal environment:

    Code Block
    # Spring profiles to activate:  can be comma delimited
    # Can choose one of dev-standalone or uportal
    spring.profiles.active=dev-standalone
    #spring.profiles.active=uportal  <-- this will be uncommented by default
  • Copy the embedded LDAP file to $SSP_CONFIGDIR so that the user can authenticate:

    • Linux/OSX:

      Code Block
      cp (ssp source folder)/SSP/src/main/config/devExternal/users.ldif $SSP_CONFIGDIR
  • Build the SSP War:

    Code Block
    C:\ssp\SSP-master> mvn -PSTANDALONE -Dmaven.test.skip=true clean install
  • Copy the generated war to Tomcat, then restart tomcat (shutdown/startup)

    Code Block
    cp (ssp source folder)/SSP/target/ssp.war $CATALINA_BASE/webapps
    • Note: prior to the above step you might need to delete an existing ssp directory and ssp.war file from the tomcat webapps directory if you have previously deployed this portlet.

       

...

Anchor
SSP-Platform Build
SSP-Platform Build
Configure and Deploy SSP-Platform

...