Download mule-module-json-3.8.1.jar file

Introduction

You can download mule-module-json-3.8.1.jar in this page.

License

Open Source

Type List

mule-module-json-3.8.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.mule.modules/mule-module-json/pom.properties
META-INF/maven/org.mule.modules/mule-module-json/pom.xml
META-INF/mule-json.xsd
META-INF/services/javax.ws.rs.ext.MessageBodyReader
META-INF/services/javax.ws.rs.ext.MessageBodyWriter
META-INF/services/org/mule/config/registry-bootstrap.properties
META-INF/services/org/mule/i18n/json-messages.properties
META-INF/spring.handlers
META-INF/spring.schemas
org.mule.api.annotations.expression.JsonPath.class
org.mule.module.json.DefaultJsonParser.class
org.mule.module.json.JsonData.class
org.mule.module.json.JsonExpressionEvaluator.class
org.mule.module.json.JsonNodeExpressionEvaluator.class
org.mule.module.json.JsonParser.class
org.mule.module.json.config.JsonNamespaceHandler.class
org.mule.module.json.config.JsonPathAnnotationParser.class
org.mule.module.json.config.MapperFactoryBean.class
org.mule.module.json.config.ValidateJsonSchemaMessageProcessorDefinitionParser.class
org.mule.module.json.filters.IsJsonFilter.class
org.mule.module.json.i18n.JsonMessages.class
org.mule.module.json.transformers.AbstractJsonTransformer.class
org.mule.module.json.transformers.AbstractToFromXmlTransformer.class
org.mule.module.json.transformers.JsonMapperResolver.class
org.mule.module.json.transformers.JsonSchemaFilter.class
org.mule.module.json.transformers.JsonSchemaJsonValidationFilter.class
org.mule.module.json.transformers.JsonSchemaValidationFilter.class
org.mule.module.json.transformers.JsonSchemaXsdValidationFilter.class
org.mule.module.json.transformers.JsonToObject.class
org.mule.module.json.transformers.JsonToXml.class
org.mule.module.json.transformers.JsonTransformerResolver.class
org.mule.module.json.transformers.JsonXsltTransformer.class
org.mule.module.json.transformers.ObjectToJson.class
org.mule.module.json.transformers.TransformerInputs.class
org.mule.module.json.transformers.XmlToJson.class
org.mule.module.json.validation.JsonSchemaDereferencing.class
org.mule.module.json.validation.JsonSchemaValidationException.class
org.mule.module.json.validation.JsonSchemaValidator.class
org.mule.module.json.validation.ValidateJsonSchemaMessageProcessor.class

Pom

mule-module-json-3.8.1.pom file content.

<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/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.mule.modules</groupId>
        <artifactId>mule-modules</artifactId>
        <version>3.8.1</version>
    </parent>
    <artifactId>mule-module-json</artifactId>
    <packaging>jar</packaging>
    <name>JSON Module</name>
    <description>Implementation of JSON transformers for Mule</description>

    <build>
        <pluginManagement>
            <plugins>
                <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
                <plugin>
                    <groupId>org.eclipse.m2e</groupId>
                    <artifactId>lifecycle-mapping</artifactId>
                    <version>1.0.0</version>
                    <configuration>
                        <lifecycleMappingMetadata>
                            <pluginExecutions>
                                <pluginExecution>
                                    <pluginExecutionFilter>
                                        <groupId>
                                            org.apache.maven.plugins
                                        </groupId>
                                        <artifactId>
                                            maven-enforcer-plugin
                                        </artifactId>
                                        <versionRange>
                                            [1.0-alpha-4,)
                                        </versionRange>
                                        <goals>
                                            <goal>enforce</goal>
                                        </goals>
                                    </pluginExecutionFilter>
                                    <action>
                                        <ignore></ignore>
                                    </action>
                                </pluginExecution>
                            </pluginExecutions>
                        </lifecycleMappingMetadata>
                    </configuration>
                </plugin>
            </plugins>
        </pluginManagement>
    </build>

    <dependencies>
        <!-- Mule Dependencies -->
        <dependency>
            <groupId>org.mule</groupId>
            <artifactId>mule-core</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.mule.modules</groupId>
            <artifactId>mule-module-spring-config</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.mule.modules</groupId>
            <artifactId>mule-module-xml</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.mule.modules</groupId>
            <artifactId>mule-module-validation</artifactId>
            <version>${project.version}</version>
        </dependency>

        <!-- JSON deps, pulls in core and mapper -->
        <dependency>
            <groupId>org.codehaus.jackson</groupId>
            <artifactId>jackson-core-asl</artifactId>
            <version>${jacksonVersion}</version>
        </dependency>
        <dependency>
            <groupId>org.codehaus.jackson</groupId>
            <artifactId>jackson-mapper-asl</artifactId>
            <version>${jacksonVersion}</version>
        </dependency>
        <dependency>
            <groupId>org.codehaus.jackson</groupId>
            <artifactId>jackson-xc</artifactId>
            <version>${jacksonVersion}</version>
        </dependency>
        <dependency>
            <groupId>de.odysseus.staxon</groupId>
            <artifactId>staxon</artifactId>
            <version>${staxonVersion}</version>
        </dependency>
        <dependency>
            <groupId>org.codehaus.woodstox</groupId>
            <artifactId>stax2-api</artifactId>
            <version>${staxApiVersion}</version>
        </dependency>
        <dependency>
            <groupId>javax.mail</groupId>
            <artifactId>mail</artifactId>
        </dependency>
        <dependency>
            <groupId>com.github.fge</groupId>
            <artifactId>json-schema-validator</artifactId>
            <version>2.2.6</version>
            <exclusions>
                <exclusion>
                    <groupId>com.fasterxml.jackson.core</groupId>
                    <artifactId>jackson-databind</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>com.google.code.findbugs</groupId>
                    <artifactId>jsr305</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>javax.activation</groupId>
                    <artifactId>activation</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>joda-time</groupId>
                    <artifactId>joda-time</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>com.google.guava</groupId>
                    <artifactId>guava</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-databind</artifactId>
            <version>${jackson2Version}</version>
        </dependency>

        <!-- test dependencies -->
        <dependency>
            <groupId>org.mule.tests</groupId>
            <artifactId>mule-tests-functional</artifactId>
            <version>${project.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.skyscreamer</groupId>
            <artifactId>jsonassert</artifactId>
            <version>1.1.1</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>

POM Entry

<dependency>
   <groupId>org.mule.modules</groupId>
   <artifactId>mule-module-json</artifactId>
   <version>3.8.1</version>
</dependency>

Download

If you think the following mule-module-json-3.8.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download mule-module-json-3.8.1.jar file




PreviousNext

Related