A set of Gradle plugins that facilitate packaging projects for distributions conforming to Palantir's Service Layout Specification. This project was formerly known as gradle-java-distribution.
The Java Service and Asset plugins cannot both be applied to the same gradle project, and
distributions from both are produced as a gzipped tar named [service-name]-[project-version].sls.tgz.
Similar to the standard application plugin, this plugin helps package Java Gradle projects for easy distribution and execution. This distribution conforms with Palantir's SLS service layout conventions that attempt to split immutable files from mutable state and configuration.
In particular, this plugin packages a project into a common deployment structure with a simple start script, daemonizing script, and, a manifest describing the content of the package. The package will follow this structure:
[service-name]-[service-version]/
    deployment/
        manifest.yml                      # simple package manifest
    service/
        bin/
            [service-name]                # Bash start script
            [service-name].bat            # Windows start script
            init.sh                       # daemonizing script
            darwin-amd64/go-java-launcher # Native Java launcher binary (MacOS)
            linux-amd64/go-java-launcher  # Native Java launcher binary (Linux x86_64)
            linux-arm64/go-java-launcher  # Native Java launcher binary (Linux arm64)
            launcher-static.yml           # generated configuration for go-java-launcher
            launcher-check.yml            # generated configuration for check.sh go-java-launcher
        lib/
            [jars]
        monitoring/
            bin/
                check.sh                  # monitoring script
    var/                                  # application configuration and data
The service/bin/ directory contains both Gradle-generated launcher scripts ([service-name] and [service-name].bat)
and go-java-launcher launcher binaries.
See below for usage.
This plugin helps package static files and directories into a distribution that conforms with Palantir's SLS asset
layout conventions.  Asset distributions differ from service distributions in that they do not have a top-level
service or var directory, and instead utilize a top-level asset directory that can contain arbitrary files.
See below for usage.
'Product dependencies' are declarative metadata about the products your product/asset requires in order to function. When you run ./gradlew distTar, your product dependencies are embedded in the resultant dist in the deployment/manifest.yml file.
Most of your product dependencies should be inferred automatically from on the libraries you depend on. Any one of these jars may contain an embedded 'recommended product dependency' in its MANIFEST.MF (embedded using the Recommended Product Dependencies Plugin).
However, you can also use the productDependency block to specify these manually (although this is no longer considered a best-practise). Please note: you can add further restrictions to existing constraints, but you can't broaden them:
distribution {
    productDependency {
        productGroup = "com.palantir.group"
        productName = "my-service"
        minimumVersion = "1.0.0"
        maximumVersion = "1.x.x"
        recommendedVersion = "1.2.1"
        optional = false
    }
}sls-packaging also maintains a lockfile, product-dependencies.lock, which should be checked in to Git.  This file is an accurate reflection of all the inferred and explicitly defined product dependencies. Run ./gradlew --write-locks or ./gradlew writeProductDependenciesLocks to update it. e.g.
# Run ./gradlew writeProductDependenciesLocks to regenerate this file
com.palantir.auth:auth-service (1.2.0, 1.6.x)
com.palantir.storage:storage-service (3.56.0, 3.x.x)
com.palantir.email:email-service (1.200.3, 2.x.x) optional
com.palantir.foo:foo-service ($projectVersion, 1.x.x)
The $projectVersion string is a placeholder that will appear if your repo publishes multiple services, and one of them depends on another.  The actual manifest will contain a concrete version.
The suffix optional will be added for optional = true in the productDependency declaration. All dependencies are required by default.
It's possible to further restrict the acceptable version range for a dependency by declaring a tighter constraint in a
productDependency block - this will be merged with any constraints detected from other jars.
If all the constraints on a given product don't overlap, then an error will the thrown:
Could not merge recommended product dependencies as their version ranges do not overlap.
If you wanted to discover another source of product dependencies without modifying your classpath e.g. depend on a project that's not an sls service, but will be run in a different environment that still requires minimum versions of certain products. You can do this by adding a dependency to the productDependencyDiscovery configuration like so:
dependencies {
  // requires the configuration being passed in to be a consumable configuration
  productDependencyDiscovery project(path: ':non-sls-service', configuration: 'runtimeElements')
}[!INFO] This requires the configuration passed in to be a consumable configuration
You can also decide to extend the productDependencyDiscovery configuration with the configuration of your choice:
configurations {
  productDependencyDiscovery {
    extendsFrom configurations.myConfiguration
  }
}[!INFO] The configuration being extended from has to exist in the same project.
It's also possible to explicitly ignore a dependency or mark it as optional if it comes as a recommendation from a jar:
distribution {
    productDependency {
        // ...
    }
    ignoredProductDependency('other-group3', 'other-service3')
    optionalProductDependency('other-group4', 'other-service4')
}Dependencies marked as optional will appear with the optional suffix in the lockfile.
If you want to ignore all product dependencies that come from a particular jar dependency transitively, you can exclude the jar like you would any other dependency on the productDependencyDiscovery configuration. For example, to exclude group:should-exclude, you would something like this:
configurations {
  productDependencyDiscovery {
    exclude group: 'group', module: 'should-exclude'
  }
}Concretely, this means any product depenendencies coming from group:should-exclude and other dependencies in its dependency graph will not contribute any product dependencies.
You can programmatically access the minimum product dependency version as follows:
def myDependency = getMinimumProductVersion('com.palantir.service:my-service')More often though, you probably just want to get the minimum product dependencies as a gradle configuration
that you can depend on from other projects. For this purpose, there is a configuration called productDependencies
that is published from each SLS project.
You can then use this together with gradle-docker to inject your product dependencies into the docker-compose templating, for instance.
For example, given a dist project, :my-service, you can collect wire up docker :
// from another project
apply plugin: 'com.palantir.docker'
dependencies {
    docker project(path: ':my-service', configuration: 'productDependencies')
}You can specify container images that your product requires using the artifact declaration on the distribution
extension. For example, if a container could be pulled from registry.example.io/foo/bar:v1.3.0, you could add the
following to the distribution extension. The entry should contain the URI for the artifact in the uri field and
should always contain 'oci' (the only currently supported type) in the type field:
distribution {
   artifact {
        type = 'oci'
        uri = 'registry.example.io/foo/bar:v1.3.0'
    }
}The result will be embedded in the deployment/manifest.yml file. The file will look something like this:
{
  "manifest-version" : "1.0",
  "product-type" : "service.v1",
  "product-group" : "com.example.foo",
  "product-name" : "bar",
  "product-version" : "1.1.0",
  "extensions" : {
    "product-dependencies" : [ {
      "product-group" : "com.example",
      "product-name" : "dependency",
      "minimum-version" : "1.0.0",
      "recommended-version" : "1.0.0",
      "maximum-version" : "1.x.x",
      "optional" : false
    } ],
    "artifacts" : [ {
       "type": "oci",
       "uri": "registry.example.io/foo/bar:v1.1.0"
    } ]
  }
}sls-packaging also maintains a lockfile, schema-versions.lock, which should be checked in to Git.
This file is an accurate reflection of the schema versions specified in the manifest.
The file can be used to easily determine what schema versions are supported by a particular version of the code.
Run ./gradlew --write-locks or ./gradlew writeSchemaVersionLocks to update it.
---
comment: "Run ./gradlew writeSchemaVersionLocks to regenerate this file"
schemaMigrations:
- type: "online"
  from: 100
- type: "online"
  from: 101
version: 1
These plugins require at least Gradle 4.10.
Apply the plugin using standard Gradle convention:
plugins {
    id 'com.palantir.sls-java-service-distribution'
}
Additionally, declare the version of go-java-launcher to use:
# Add to 'versions.props'
com.palantir.launching:* = 1.18.0
A sample configuration for the Service plugin:
distribution {
    serviceName 'my-service'
    serviceGroup 'my.service.group'
    mainClass 'com.palantir.foo.bar.MyServiceMainClass'
    args 'server', 'var/conf/my-service.yml'
    env 'KEY1': 'value1', 'KEY2': 'value1'
    manifestExtensions 'KEY3': 'value2'
    productDependency {
        productGroup = "other-group"
        productName = "other-service"
        minimumVersion = "1.1.0"
        maximumVersion = "1.5.x"      // optional, defaults to "1.x.x" (same major version as minimumVersion)
        recommendedVersion = "1.3.0"  // optional
    }
}
And the complete list of configurable properties:
- (optional) 
serviceNamethe name of this service, used to construct the final artifact's file name. Defaults to the configured "name" of the Gradle project,project.name. - (optional) 
serviceGroupthe group of the service, used in the final artifact's manifest. Defaults to the configured "group" of the Gradle project,project.group. - (optional) 
manifestExtensionsa map of extended manifest attributes, as specified in SLS 1.0 - (optional) 
productDependencyadds an entry to theextensions.product-dependenciesblock of the SLS manifest, declaring that this service has a dependency on the given other service with specific version bounds. TheproductDependencyobject must specify the following properties:productGrouptheserviceGroupof the dependency.productNametheserviceNameof the dependency.minVersionthe minimal compatible version of the dependency.maxVersionthe maximal compatible version of the dependency.recommendedthe version developers think you should use; most commonly the version of the implementation that was tested during CI (minVersiontypically matches the version of the api you use to negotiate).
 - (optional) 
mainClassclass containing the entry point to start the program. Defaults to this sole class containing a main method in the main source set if one exists. - (optional) 
argsa list of arguments to supply when runningstart. - (optional) 
checkArgsa list of arguments to supply to the monitoring script, if omitted, no monitoring script will be generated. - (optional) 
enva map of environment variables that will be placed into theenvblock of the static launcher config. See go-java-launcher for details on the custom environment block. - (optional) 
defaultJvmOptsa list of default JVM options to set on the program. - (optional) 
enableManifestClasspatha boolean flag; if set to true, then the explicit Java classpath is omitted from the generated start scripts and static launcher config and instead inferred from a JAR file whose MANIFEST contains the classpath entries. - (optional) 
excludeFromVara list of directories (relative to${projectDir}/var) to exclude from the distribution, defaulting to['log', 'run']. - (optional) 
javaVersiona fixed override for the desired major Java runtime version (e.g.javaVersion JavaVersion.VERSION_15). This defaults to the JavatargetCompatibilityversion. Setting this automatically setsjavaHometo the appropriate corresponding value. - (optional) 
javaHomea fixed override for theJAVA_HOMEenvironment variable that will be applied wheninit.shis run. When yourtargetCompatibilityis Java 8 or less, this value will be blank. For Java 9 or higher will default to$JAVA_<majorversion>_HOMEie for Java 11 this would be$JAVA_11_HOME. - (optional) 
gcoverride the default GC settings. Available GC settings:throughput(default for Java 14 and lower),hybrid(default for Java 15 and higher) andresponse-time. Additionally, there is alsodangerous-no-profilewhich does not apply any additional JVM flags and allows you to fully configure any GC settings through JVM options (not recommended for normal usage!). - (optional) 
addJava8GcLoggingadd java 8 specific gc logging options. - (optional) 
enableAlwaysPreTouch()adds the-XX:+AlwaysPreTouchand-XX:+UseTransparentHugePagesJVM options. - (optional) 
extraFilesa collection of additional files (CopySpecs) to be included in the distribution. 
The list of JVM options passed to the Java processes launched through a package's start-up scripts is obtained by
concatenating the following list of hard-coded required options and the list of options specified in
distribution.defaultJvmOpts:
Hard-coded required JVM options:
-Djava.io.tmpdir=var/data/tmp: Allocates temporary files inside the application installation folder rather than on/tmp; the latter is often space-constrained on cloud hosts.-Djna.tmpdir=var/data/tmp: Allocates temporary JNA files inside the application installation folder rather than on${USER}/.cache; the latter is often space-constrained on cloud hosts and filling it up can result in users not being able to login.
The go-java-launcher and init.sh launchers additionally append the list of JVM options specified in the
var/conf/launcher-custom.yml configuration file. Note that later
options typically override earlier options (although this behavior is undefined and may be JVM-specific); this allows
users to override the hard-coded options.
The distribution extension provides a configuration point to add JDKs; internally, gradle-sls-docker discovers the  appropriate JDKs used in the service's associated container image then configures these JDKs to be included in the dist. There are more details in gradle-sls-docker readme.
For each included JDK major version X, the launcher-static.yml run by go-java-launcher has the corresponding JAVA_X_HOME environment variable set to be a relative path to the JDK's location in the dist. The javaHome option is also set to the relative path in the same manner. There can only be one version of each JDK major version included in the dist.
Environment variables can be configured through the env blocks of launcher-static.yml and launcher-custom.yml as
described in configuration file. They are set by the launcher process
before the Java process is executed.
The plugin configures go-java-launcher to create the following directories before starting the service:
- var/data/tmp
 
Additionally, the following directories are created in every SLS distribution created:
- var/log
 - var/run
 
Apply the plugin using standard Gradle convention:
plugins {
    id 'com.palantir.sls-asset-distribution'
}
A sample configuration for the Asset plugin:
distribution {
    serviceName 'my-assets'
    assets 'relative/path/to/assets', 'relocated/path/in/dist'
    assets 'another/path, 'another/relocated/path'
}
The complete list of configurable properties:
serviceNamethe name of this service, used to construct the final artifact's file name.- (optional) 
serviceGroupthe group of the service, used in the final artifact's manifest. Defaults to the configured "group" of the Gradle project,project.group. - (optional) 
manifestExtensionsa map of extended manifest attributes, as specified in SLS 1.0. - (optional) 
productDependencyadds an entry to theextensions.product-dependenciesblock of the SLS manifest, declaring that this asset has a dependency on the given other product with specific version bounds. - (optional) 
assets <fromPath>adds the specified file or directory (recursively) to the asset distribution, preserving the directory structure. For example,assets 'foo/bar'yields filesfoo/bar/baz/1.txtandfoo/bar/2.txtin the asset distribution, assuming that the directoryfoo/barcontains filesbaz/1.txtand2.txt. - (optional) 
assets <fromPath> <toPath>as above, but adds the specified files relative totoPathin the asset distribution. For example,assets 'foo/bar' 'baz'yields filesbaz/baz/1.txtandbaz/2.txtassuming that the directoryfoo/barcontains the filesbaz/1.txtand2.txt. - (optional) 
setAssets <map<fromPath, toPath>>as above, but removes all prior configured assets. 
The example above, when applied to a project rooted at ~/project, would create a distribution with the following structure:
[service-name]-[service-version]/
    deployment/
        manifest.yml                      # simple package manifest
    asset/
        relocated/path/in/dist            # contents from `~/project/relative/path/to/assets/`
        another/relocated/path            # contents from `~/project/another/path`
Note that repeated calls to assets are processed in-order, and as such, it is possible to overwrite resources
by specifying that a later invocation be relocated to a previously used destination's ancestor directory.
To create a compressed, gzipped tar file of the distribution, run the distTar task. To create a compressed,
gzipped tar file of the deployment metadata for the distribution, run the configTar task.
The plugins expose the tar file as an artifact in the sls configuration, making it easy to
share the artifact between sibling Gradle projects. For example:
configurations { tarballs }
dependencies {
    tarballs project(path: ':other-project', configuration: 'sls')
}As part of package creation, the Java Service plugin will additionally create three shell scripts:
service/bin/[service-name]: a Gradle default start script for running the definedmainClass. This script is considered deprecated due to security issues with injectable Bash code; use the go-java-launcher binaries instead (see below).service/bin/<architecture>/go-java-launcher: native binaries for executing the specifiedmainClass, configurable viaservice/bin/launcher-static.ymlandvar/conf/launcher-custom.yml.service/bin/init.sh: a shell script to assist with daemonizing a JVM process. The script takes a single argument ofstart,stop,consoleorstatus.start: On calls toservice/bin/init.sh start,service/bin/<architecture>/go-java-launcherwill be executed, disowned, and a pid file recorded invar/run/[service-name].pid.console: likestart, but does not background the process.status: returns 0 whenvar/run/[service-name].pidexists and a process the id recorded in that file with a command matching the expected start command is found in the process table.stop: if the process status is 0, issues a kill signal to the process.
service/monitoring/bin/check.sh: a no-argument shell script that returns0when a service is healthy and non-zero otherwise. This script is generated if and only ifcheckArgsis specified above, and will run the singular command defined by invoking<mainClass> [checkArgs]to obtain health status.
Furthermore, the Java Service plugin will merge the entire contents of
${projectDir}/service and ${projectDir}/var into the package.
distTar: creates the gzipped tar packageconfigTar: creates the gzipped tar package of the deployment configurationcreateManifest: generates a simple yaml file describing the package content
Specific to the Java Service plugin:
createStartScripts: generates standard Java start scriptscreateInitScript: generates daemonizing init.sh scriptrun: runs the specifiedmainClasswith defaultargs
This plugin allows API jars to declare the recommended product dependencies an SLS service distribution should take.
An example application of this plugin might look as follows:
apply plugin: 'java'
apply plugin: 'com.palantir.sls-recommended-dependencies'
recommendedProductDependencies {
    productDependency {
        productGroup = 'com.foo.bar.group'
        productName = 'product'
        minimumVersion = rootProject.version
        maximumVersion = "${rootProject.version.tokenize('.')[0].toInteger()}.x.x"
        recommendedVersion = rootProject.version
        optional = true
    }
}The recommended product dependencies will be serialized into the jar manifest of the jar that the project produces. The SLS distribution and asset plugins will inspect the manifest of all jars in the server or asset and extract the recommended product dependencies.
This plugin is made available under the Apache 2.0 License.