-
Notifications
You must be signed in to change notification settings - Fork 13
Extensions
bld
project files are written in Java and are automatically
compiled before executing the commands. Like any Java application, your project
file can only use classes that are present on the classpath. The standard Java
JDK, RIFE2/core and bld classes are always available to your build and are
already very powerful, but you often need custom features in order to perform
more specialized build tasks.
This is where bld
extensions come into play.
There is no plugin API nor plugin architecture for bld
. Extensions are merely
classes that will be available to your build sources, so that you can write
build code that depends on other libraries. Just like the other classpath
entries that are used to compile your main application, the classpath of your
build sources is automatically created from the jar files that are present in
the lib/bld
directory of your project.
You could manually place libraries in that directory, but it might be inconvenient to track down and download all required dependencies.
The requirement to compile your build file, presents a chicken-and-egg situation
if you would also specify the extension dependencies there. Therefore, you
instead add properties the lib/bld/bld-wrapper.properties
to indicate
extension dependencies and repositories.
For example:
bld.downloadExtensionSources=true
bld.downloadExtensionJavadoc=false
bld.extensions=com.uwyn.rife2:bld-antlr4:1.2.3
bld.repositories=MAVEN_CENTRAL,RIFE2_RELEASES
bld.downloadLocation=
bld.version=1.7.4
Let's go over the properties:
The bld.version
is critical, it tells bld
which version to use. That
version will be automatically downloaded from Maven central but by specifying
a bld.downloadLocation
property you can provide a path where the jar file
will be downloaded from instead. You should never have to change this, it's
mainly used to test pre-release artifacts amongst all the RIFE2 projects.
Any property starting with bld.extension
, can contain a comma-seperated list
of extensions in the common dependency description format
groupId:arfifactId:version
.
The property bld.repositories
contains a comma separated list of Maven
repositories. You have three ways to specify a repository:
- Use one of standard repositories are available as shortcuts:
APACHE
,MAVEN_CENTRAL
,MAVEN_LOCAL
,RIFE2_RELEASES
,RIFE2_SNAPSHOT
,SONATYPE_RELEASES
, andSONATYPE_SNAPSHOTS
. - Type in the complete location, for instance:
https://repo1.maven.org/maven2/
- Use a repository name that will be resolved through the hierarchical properties
To resolve a repository name through the properties, bld
looks for three
property name patterns. For instance, consider the repository name rife2
will
work with the following properties:
bld.repo.rife2=https://repo.rife2.com/releases
bld.repo.rife2.username=youruser
bld.repo.rife2.password=yourpass
The final two properties bld.downloadExtensionSources
and
bld.downloadExtensionJavadoc
respectively also download the sources and the
javadoc artifacts of the specified dependencies.
A growing collection of bld
extensions are available through the RIFE2 Maven
repository at https://repo.rife2.com. These are specifically designed to
provide bld
operations that work in a similar way as the standard bld
operations. Please refer to the extension documentation for usage instructions.
Don't forget that extensions are simply Java classes! You can specify any Maven dependency as an extension and use it to implement your own custom build commands or operations.
Our current official
extensions are:
bld
ANTLR4 extensionbld
Archive extensionbld
Checkstyle extensionbld
Command Line Execution extensionbld
Generated Version extensionbld
JaCoCo Report extensionbld
PIT Mutation Testing extensionbld
PMD extensionbld
Property File extensionbld
TestNG extensionbld
Tests Badge extension
Next learn more about Examples