Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Brief instructions on changing Platform to depend on 2.4.1-SNAPSHOT

...

Tip

In order to build SSP-Platform directly from the Github repository, follow the developer environment instructions.  The requisite software and configurations are similar but add the git component to maintain a local repository.

Update June 24, 2014: Those instructions also describe how to build SSP from source, which you'll need to do if you're targeting the latest 2.4.x patches ahead of the 2.4.1 GA. If you're deploying the 2.4.0 GA of Platform, but want to target SSP 2.4.1-SNAPSHOT (i.e. the latest 2.4.x), build SSP first, then update the SSP dependency in <platform-src>/uportal-portlets-overlay/ssp/pom.xml before building Platform. Find the <dependency> referring to ssp and update the <version> as shown below:

No Format
         <dependency>
            <groupId>org.jasig.ssp</groupId>
            <artifactId>ssp</artifactId>
            <version>2.4.1-SNAPSHOT</version>
            <type>war</type>
            <exclusions>
                <exclusion>
                    <groupId>javax.portlet</groupId>
                    <artifactId>portlet-api</artifactId>
                </exclusion>
            </exclusions> 
        </dependency>

2. SSP Configuration Files

...