Installation

The pkl-spring library is hosted on Maven Central.

pkl-spring requires Java 11 or higher and Spring Boot 2.2 or higher. Note that pkl-spring's POM does not declare a dependency on Spring Boot; this is left to your application.

Gradle

Add this to your build.gradle:

dependencies {
  compile "org.pkl-lang:pkl-spring:0.15.0"
}

See the badges at the top of this page for the current release and latest snapshot version.

Maven

Add this to your pom.xml:

<dependencies>
  <dependency>
    <groupId>org.pkl-lang</groupId>
    <artifactId>pkl-spring</artifactId>
    <version>0.15.0</version>
  </dependency>
</dependencies>

See the badges at the top of this page for the current release and latest snapshot version.