...
The guide below will describe in as much detail as possible the process of building one of the 1.5 tags and database migration processes for in between versions.
Section border true Pre-requisites: - Hardware: Kuali OLE can be built on both windows and linux platforms. The hardware specs will differ from institution to institution, but the default cloud settings where the codebase is deployed on a regular basis is as follows;
- Amazon EC2 instance (type m1.medium)
- AMD 64 bit
- Dual core
- 7.5 GB RAM
- 840 GB HDD
- Amazon EC2 instance (type m1.medium)
- Software:
- Building the application
- Maven 3
- Java 7
- svn client
- Running the application
- Apache tomcat 6 or 7
- MySQL 5.5 or greater
or Oracle 11g
Warning title Database drivers Don't forget to add the database drivers either MySQL or Oracle to the lib folder under tomcat.
- Building the application
- Hardware: Kuali OLE can be built on both windows and linux platforms. The hardware specs will differ from institution to institution, but the default cloud settings where the codebase is deployed on a regular basis is as follows;
- Checking out the deployable units: Depending on how you intend to run KOLE you can do the following;
- Install defaults and deploy the war(s):
- Customize the build:
- Checkout the codebase from https://svn.kuali.org/repos/ole/tags/${tag.number}; Here tag.number is either 1.5 or 1.5.1 or 1.5.2
- Build it using the following maven command from the root directory of the project location
Code Block language java title Building deployable units mvn clean install
- Customizing default parameters
- Loading local data
- Deploying to the server
- Testing the application
...