Project to build a stand-alone admin console (launcher) package
~$ ./gradlew jar --console=verbose
The jar is placed in .../build/libs/
For development, you can run the app via:
~$ ./gradlew run --console=verbose
##Apereo Header validation
The gradle build includes a task which will check that each source file in the common and configurator projects has an Apereo
license notice at the top of the file. This license is stored in LICENSE
in the root of this repository.
In order to apply the headers, run:
-$ ./gradlew licenseFormat
In order to check that the headers have been applied, run:
-$ ./gradlew license
NOTE: The license check is executed as part of the standard build
target.
The gradle build includes a task which creates three packages by bundling OpenJDK, all dependencies of this project and a system-specific launcher script.
- For Linux user, extract the package and run: ./Linux-launcher.sh
- For Windows user, extract the package and double click Windows-launcher.bat
- For Mac user, extract the package and run: ./Mac-launcher.sh
These packages will be produced as part of the standard build task.
-$ ./gradlew build