Open 9b528120 opened 1 year ago
Hi @9b528120, In your build tool Maven/Gradle/SBT, you can use specific version of jolt library and test your code. e.g. in Maven you can make below changes in your pom.xml file and test your code with 0.1.0 jolt version:
<properties>
<jolt.version>0.1.0</jolt.version>
</properties>
<dependencies>
<dependency>
<groupId>com.bazaarvoice.jolt</groupId>
<artifactId>jolt-complete</artifactId>
<version>${jolt.version}</version>
</dependency>
<dependency>
<groupId>com.bazaarvoice.jolt</groupId>
<artifactId>jolt-core</artifactId>
<version>${jolt.version}</version>
</dependency>
<dependency>
<groupId>com.bazaarvoice.jolt</groupId>
<artifactId>json-utils</artifactId>
<version>${jolt.version}</version>
</dependency>
</dependencies>
Does the website support switching to an older version of JOLT? I need to test something on 0.1.0 (before you added split support)