Installation
The pkl-spring library is available from Maven Central. It requires Java 17 or later and Spring Boot 2.2 or later.
The pkl-spring POM does not declare a dependency on Spring Boot; this is left to your application. |
Gradle
To use the library in a Gradle project, declare the following dependency:
-
Kotlin
-
Groovy
build.gradle.kts
dependencies {
implementation("org.pkl-lang:pkl-spring:0.17.1")
}
repositories {
mavenCentral()
}
build.gradle
dependencies {
implementation "org.pkl-lang:pkl-spring:0.17.1"
}
repositories {
mavenCentral()
}
Maven
To use the library in a Maven project, declare the following dependency:
<dependencies>
<dependency>
<groupId>org.pkl-lang</groupId>
<artifactId>pkl-spring</artifactId>
<version>0.17.1</version>
</dependency>
</dependencies>