Installation Guide for Oracle Self-Service E-Billing > Configuring Oracle WebLogic > Process of Repackaging the GNU Lesser General Public License >
Setting Up Maven
Before you can repackage the LGPL, you must set up Maven. This task is a step in Process of Repackaging the GNU Lesser General Public License. To set up Maven
- Go to the following directory, and download Maven 2.0.7 (Oracle Self-Service E-Billing also supports versions 2.0.5 and 2.0.6):
http://maven.apache.org
- Unzip the downloaded archive to your local Maven home directory, such as maven-2.0.7.
- Create the environment variable M2_HOME, where Maven_Home_Dir is the Maven home path. For example:
- UNIX.
export M2_HOME=Maven_Home_Dir
- Windows.
set M2_HOME=Maven_Home_Dir
- Add the bin directory from M2_HOME to a PATH variable:
- UNIX.
export PATH=$M2_HOME/bin:$PATH;
- Windows.
set PATH=%M2_HOME%\bin;%PATH%
|