You can download jolt-core-0.0.21.jar in this page.
Open Source
jolt-core-0.0.21.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/com.bazaarvoice.jolt/jolt-core/pom.properties META-INF/maven/com.bazaarvoice.jolt/jolt-core/pom.xml com.bazaarvoice.jolt.CardinalityTransform.class com.bazaarvoice.jolt.Chainr.class com.bazaarvoice.jolt.ContextualTransform.class com.bazaarvoice.jolt.Defaultr.class com.bazaarvoice.jolt.JoltTransform.class com.bazaarvoice.jolt.Removr.class com.bazaarvoice.jolt.Shiftr.class com.bazaarvoice.jolt.Sortr.class com.bazaarvoice.jolt.SpecDriven.class com.bazaarvoice.jolt.Transform.class com.bazaarvoice.jolt.cardinality.CardinalityCompositeSpec.class com.bazaarvoice.jolt.cardinality.CardinalityLeafSpec.class com.bazaarvoice.jolt.cardinality.CardinalitySpec.class com.bazaarvoice.jolt.chainr.ChainrBuilder.class com.bazaarvoice.jolt.chainr.instantiator.ChainrInstantiator.class com.bazaarvoice.jolt.chainr.instantiator.DefaultChainrInstantiator.class com.bazaarvoice.jolt.chainr.spec.ChainrEntry.class com.bazaarvoice.jolt.chainr.spec.ChainrSpec.class com.bazaarvoice.jolt.common.DeepCopy.class com.bazaarvoice.jolt.common.Optional.class com.bazaarvoice.jolt.common.pathelement.AmpPathElement.class com.bazaarvoice.jolt.common.pathelement.ArrayPathElement.class com.bazaarvoice.jolt.common.pathelement.AtPathElement.class com.bazaarvoice.jolt.common.pathelement.BasePathElement.class com.bazaarvoice.jolt.common.pathelement.DollarPathElement.class com.bazaarvoice.jolt.common.pathelement.EvaluatablePathElement.class com.bazaarvoice.jolt.common.pathelement.HashPathElement.class com.bazaarvoice.jolt.common.pathelement.LiteralPathElement.class com.bazaarvoice.jolt.common.pathelement.MatchablePathElement.class com.bazaarvoice.jolt.common.pathelement.PathElement.class com.bazaarvoice.jolt.common.pathelement.StarAllPathElement.class com.bazaarvoice.jolt.common.pathelement.StarDoublePathElement.class com.bazaarvoice.jolt.common.pathelement.StarPathElement.class com.bazaarvoice.jolt.common.pathelement.StarRegexPathElement.class com.bazaarvoice.jolt.common.pathelement.StarSinglePathElement.class com.bazaarvoice.jolt.common.pathelement.TransposePathElement.class com.bazaarvoice.jolt.common.reference.AmpReference.class com.bazaarvoice.jolt.common.reference.BasePathAndGroupReference.class com.bazaarvoice.jolt.common.reference.BasePathReference.class com.bazaarvoice.jolt.common.reference.DollarReference.class com.bazaarvoice.jolt.common.reference.HashReference.class com.bazaarvoice.jolt.common.reference.PathAndGroupReference.class com.bazaarvoice.jolt.common.reference.PathReference.class com.bazaarvoice.jolt.common.tree.MatchedElement.class com.bazaarvoice.jolt.common.tree.PathStep.class com.bazaarvoice.jolt.common.tree.WalkedPath.class com.bazaarvoice.jolt.defaultr.ArrayKey.class com.bazaarvoice.jolt.defaultr.Key.class com.bazaarvoice.jolt.defaultr.MapKey.class com.bazaarvoice.jolt.defaultr.OPS.class com.bazaarvoice.jolt.exception.JoltException.class com.bazaarvoice.jolt.exception.SpecException.class com.bazaarvoice.jolt.exception.TransformException.class com.bazaarvoice.jolt.removr.spec.RemovrCompositeSpec.class com.bazaarvoice.jolt.removr.spec.RemovrLeafSpec.class com.bazaarvoice.jolt.removr.spec.RemovrSpec.class com.bazaarvoice.jolt.shiftr.PathEvaluatingTraversal.class com.bazaarvoice.jolt.shiftr.ShiftrTraversr.class com.bazaarvoice.jolt.shiftr.ShiftrWriter.class com.bazaarvoice.jolt.shiftr.TransposeReader.class com.bazaarvoice.jolt.shiftr.spec.ShiftrCompositeSpec.class com.bazaarvoice.jolt.shiftr.spec.ShiftrLeafSpec.class com.bazaarvoice.jolt.shiftr.spec.ShiftrSpec.class com.bazaarvoice.jolt.traversr.SimpleTraversal.class com.bazaarvoice.jolt.traversr.SimpleTraversr.class com.bazaarvoice.jolt.traversr.Traversr.class com.bazaarvoice.jolt.traversr.TraversrException.class com.bazaarvoice.jolt.traversr.traversal.ArrayTraversalStep.class com.bazaarvoice.jolt.traversr.traversal.AutoExpandArrayTraversalStep.class com.bazaarvoice.jolt.traversr.traversal.BaseTraversalStep.class com.bazaarvoice.jolt.traversr.traversal.MapTraversalStep.class com.bazaarvoice.jolt.traversr.traversal.TraversalStep.class com.bazaarvoice.jolt.utils.JoltUtils.class com.bazaarvoice.jolt.utils.StringTools.class
jolt-core-0.0.21.pom file content.
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.bazaarvoice.jolt</groupId> <artifactId>jolt-parent</artifactId> <version>0.0.21</version> <relativePath>../parent/pom.xml</relativePath> </parent> <artifactId>jolt-core</artifactId> <name>Jolt Core</name> <packaging>jar</packaging> <dependencies> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>${commons-lang3.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.bazaarvoice.jolt</groupId> <artifactId>json-utils</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>2.7</version> <configuration> <check /> <formats> <format>html</format> <format>xml</format> </formats> </configuration> </plugin> </plugins> </build> </project>
<dependency> <groupId>com.bazaarvoice.jolt</groupId> <artifactId>jolt-core</artifactId> <version>0.0.21</version> </dependency>
If you think the following jolt-core-0.0.21.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download jolt-core-0.0.21.jar file