bazaarvoice / jolt

JSON to JSON transformation library written in Java.
Apache License 2.0
1.54k stars 328 forks source link

Use Older Version of JOLT #1210

Open 9b528120 opened 1 year ago

9b528120 commented 1 year ago

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)

vinkalghodasra commented 7 months 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>