...
- pom.xml (For Microsoft SQL only)
JDBC driver for SSP-Platform if not using PostgreSQL
Warning The pom.xml should only be changed with extreme care. The Microsoft SQL Server jdbc driver needs to be identified in the build. The parameter defines the location of the driver in the local repository.
- File Location:
<platform-src-dir>/pom.xml
Configuration Values: parameters
Action: modify the
jdbc.*
parameters to refer to the JTDS driver instead of the PostgreSQL driver:Code Block title JDBC driver identified in the pom.xml <!-- The JDBC Driver used by SSP --> <jdbc.groupId>net.sourceforge.jtds</jdbc.groupId> <jdbc.artifactId>jtds</jdbc.artifactId> <jdbc.version>1.2.4</jdbc.version>
- local.properties
- The local.properties file must be modifed for database connectivity and email settings
- File Location: <platform-src-dir>/filters/local.properties
Configuration Values:
Value Description environment.build.hibernate.connection.driver_class jdbc driver file
For best results with SQL Server, the JTDS driver included with the Platform installation is recommended.
environment.build.hibernate.connection.url jdbc connection syntax
For best results with SQL Server, the JTDS driver included with the Platform installation is recommended.
environment.build.hibernate.connection.username jdbc connection database username environment.build.hibernate.connection.password jdbc connection database password environment.build.hibernate.dialect jdbc connection dialect
For best results with SQL Server, the JTDS driver included with the Platform installation is recommended.
- portal.properties
- This is only required if you are building from the zip file linked to above. If you checked out source code from Git it isn't necessary, but you'll need to make sure 'git' is on your PATH.
- File Location: <platform-src-dir>/uportal-war/src/main/resources/properties/portal.properties
- Configuration Values:
Name | Value |
---|---|
org.jasig.portal.scmRevision | ssp-platform-1.2.1-release |
- pom.xml
- This is only required if you are building from the zip file linked to above. If you checked out source code from Git it isn't necessary, but you'll need to make sure 'git' is on your PATH.
- File Location: <platform-src-dir>/uportal-portlets-overlay/ssp/pom.xml
- Instructions: Find the
buildnumber-maven-plugin
definition and add this below the closingexections
tag: No Format <configuration> <revisionOnScmFailure>ssp-platform-1.2.1-release</revisionOnScmFailure> </configuration>
4. Build SSP-Platform
- Use the following command to build, deploy, and initialize the SSP-Platform project:
...