-
Notifications
You must be signed in to change notification settings - Fork 102
/
BUILD-GRADLE.txt
27 lines (18 loc) · 1009 Bytes
/
BUILD-GRADLE.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
-------------------------------
Build instructions with Gradle.
-------------------------------
Building BootsFaces with Gradle is very straightforward, the only prerequisite is having Java installed (JDK 7 or later),
there is no need to have Gradle installed, thanks to the Gradle wrapper.
Just change your directory to the root directory of the project (where you found this file) and execute:
./gradlew
on *NIX systems or
gradlew.bat
on Windows systems.
After few seconds you should see the "BUILD SUCCESSFUL" message.
The Gradle build defaults to a Java 6 target, therefore you will find the built library in the subdirectory java6/build/libs .
You can configure your preferred target JVM version in the build.properties file,
where you can also configure the compilation arguments.
You can run the build for multiple targets at a time, in this case you will find the built library in the corresponding path:
java6/build/libs for Java 6,
java7/build/libs for Java 7,
java8/build/libs for Java 8.