To build the source, you need to install JDK 1.8.
The build uses the Maven wrapper so that you do not have to install a specific version of Maven.
The main build command is
$ ./mvnw clean install
To create the executables and avoid running the tests and generating JavaDocs, use the following command:
$./mvnw clean package -DskipTests -Dmaven.javadoc.skip=true
![]() | Note |
---|---|
You can also install Maven (>=3.3.3) yourself and run the |
![]() | Note |
---|---|
You might need to increase the amount of memory available to Maven by setting a |
To generate only the REST Docs documentation, use the following command:
./mvnw test -pl spring-cloud-skipper-server-core -Dtest=*Documentation*
To build the only the Asciidoctor documentation, use the following command:
./mvnw package -DskipTests -Pfull -pl spring-cloud-skipper-docs