A gradle plugin for building Eta projects via the Etlas build tool.
This plugin requires that Gradle 4.3+ is used.
This is used for configuring your Eta/Etlas versions for your entire project. You can only do such configuration in the root project.
NOTE: Both the Eta Plugin and the Eta Android Plugin apply the Eta Base Plugin by default, so if you import either one, it is not required to import this one!
plugins {
id 'com.typelead.eta.base' version '0.8.1'
}
This is used for standard JVM projects.
plugins {
id 'com.typelead.eta' version '0.8.1'
}
This is used for Android projects.
plugins {
id 'com.typelead.eta.android' version '0.8.1'
}
Before applying any of the plugins, you should add the following in the build.gradle
for your root project.
buildscript {
repositories {
maven {
url 'https://plugins.gradle.org/m2/'
}
}
dependencies {
classpath 'gradle.plugin.com.typelead:gradle-eta:0.8.1'
}
}
apply plugin: 'eta-base'
apply plugin: 'eta'
apply plugin: 'eta-android'
If you're interested in hacking on the plugin or trying out the latest version, you can install it from source.
git clone https://github.com/typelead/gradle-eta
cd gradle-eta
./gradlew pTML
Then, in your build.gradle
you can add:
buildscript {
repositories {
mavenLocal()
dependencies {
classpath 'com.typelead:gradle-eta:latest.release'
}
}
}
eta {
version = '0.7.2b1'
etlasVersion = '1.3.0.0'
}
apply plugin: 'application'
eta {
version = '0.7.2b1'
etlasVersion = '1.3.0.0'
}
eta {
version = '0.7.2b1'
etlasVersion = '1.3.0.0'
}
See the examples
and src/test/testData
directories for more examples.
You can use the top-level eta
extension for some basic global configurations.
NOTE: The eta
extension is only available in the root project! It will not be
available in subprojects of a multi-module build because the configuration applies to
all projects in the build.
Properties:
String version
- Version of Eta to use. The corresponding will binary will
automatically be downloaded.String etaPath
- Path to locally installed Eta binary. boolean useSystemEta
- If specified, attempts to resolve the eta binary on your system PATH
.String etlasVersion
- Version of Etlas to use for this project. The Etlas binary
will automatically be downloaded and installed from the Etlas repository.String etlasRepo
, defaults to standard Etlas repository. Generally, there is no
reason to set this.String etlasPath
- Path to locally installed Etlas binary. It is recommended to
use etlasRepo
and etlasVersion
instead, leaving this unconfigured. It will be
dynamically set by Gradle if it was downloaded and installed.boolean useSystemEtlas
- If specified, attempts to resolve the etlas binary
on your system PATH
.You can add Eta dependencies (from Hackage or elsewhere) as follows:
dependencies {
compile eta('text:1.2.2.2')
}
The general format is eta([package-name]:[version-or-version-range])
.
Ivy version range notation is supported.
The Eta Gradle Plugin adds the following tasks:
:setupEnvironmentEta
- This task is attached to the root project and installs the necessary eta
and etlas
executables for your platform or uses the provided executables in the configuration.:resolveDependenciesEta
- This task is attached to the root project and makes sure all the projects in the build use a consistent set of Eta dependencies.installDependencies<SourceSet>Eta
- This task installs the Eta dependencies into the Etlas global cache and injects the paths to all the dependency jars into the corresponding Gradle configurations. This task is incremental and will only do work on the first run and every time the dependencies change.compile<SourceSet>Eta
- This task performs incremental compilation of the corresponding source set. This task depends on compile<SourceSet>Java
and will have the output of that task in its classpath.injectDependencies<SourceSet>Eta
- This task injects Eta dependencies into non-Eta projects when non-Eta projects depend on Eta projects. This task is an implementation detail and you don't have to worry about it.For the main
source set, the tasks are installDependenciesEta
and compileEta
.
If the application
plugin is enabled as well, the run
task will run the main
function defined in src/main/eta/Main.hs
.
The standard Gradle tasks like build
, assemble
, so on will work as expected and will trigger compilation of the required Eta source sets.