Axiom Impl.
The Axiom default implementation..
Here is the list of declaration for axiom-impl. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.apache.ws.commons.axiom</groupId> <artifactId>axiom-impl</artifactId> <version>1.2.13</version> </dependency>
If you think this Maven repository POM file listing for axiom-impl is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The axiom-impl-1.2.13 has 14 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JEE Container | geronimo-activation_1.1_spec 1.1 Java Activation Spec API 1.1 | 35 |
JEE Container | geronimo-javamail_1.4_spec 1.7.1 Javamail 1.4 Specification | 24 |
XML Parser | wstx-asl 3.2.9 Woodstox is a high-performance XML processor that implements Stax (JSR-173) API | 8 |
Log | commons-logging 1.1.1 Commons Logging is a thin adapter allowing configurable bridging to other, well known logging systems. | 1143 |
JUnit | junit 4.9 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 117 |
XPath | xmlunit 1.1 XMLUnit compares a control XML document to a test document or the result of a transformation, validates documents, and compares the results of XPath expressions. | 52 |
Console | xalan 2.7.1 Xalan-Java is an XSLT processor for transforming XML documents into HTML, text, or other XML document types. It implements XSL Transformations (XSLT) Version 1.0 and XML Path Language (XPath) Version 1.0 and can be used from the command line, in an applet or a servlet, or as a module in... | 155 |
File | commons-io 1.4 Commons-IO contains utility classes, stream implementations, file filters, file comparators and endian classes. | 444 |
The following table lists the most popular artifacts which are depending on axiom-impl-1.2.13. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
XML | Saxon-HE 9.5.1-2 The XSLT and XQuery Processor | 9 |
Web Service | neethi 3.0.2 Apache Neethi provides general framework for the programmers to use WS Policy. It is compliant with latest WS Policy specification which was published in March 2006. This framework is specifically written to enable the Apache Web services stack to use WS Policy as a way of expressing it's requireme... | 6 |
The following plugins are used in the axiom-impl-1.2.13.jar
The following packages are defined in the axiom-impl-1.2.13.jar
org.apache.axiom.om.impl.llom org.apache.axiom.om.impl.llom.factory org.apache.axiom.om.impl.llom.util org.apache.axiom.soap.impl.llom org.apache.axiom.soap.impl.llom.soap11 org.apache.axiom.soap.impl.llom.soap12
Here is the content of the POM file.
<?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/maven-v4_0_0.xsd"> <parent> <artifactId>axiom-parent</artifactId> <groupId>org.apache.ws.commons.axiom</groupId> <version>1.2.13</version> <relativePath>../axiom-parent/pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>axiom-impl</artifactId> <packaging>bundle</packaging> <name>Axiom Impl</name> <description>The Axiom default implementation.</description> <url>http://ws.apache.org/axiom/</url> <scm> <connection>scm:svn:http://svn.apache.org/repos/asf/webservices/commons/tags/axiom/1.2.13/modules/axiom-impl</connection> <developerConnection>scm:svn:https://svn.apache.org/repos/asf/webservices/commons/tags/axiom/1.2.13/modules/axiom-impl</developerConnection> <url>http://svn.apache.org/viewvc/webservices/commons/tags/axiom/1.2.13/modules/axiom-impl</url> </scm> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <excludeDependencies>true</excludeDependencies> <instructions> <_nouses>true</_nouses> <Private-Package>org.apache.axiom.*</Private-Package> </instructions> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <includes> <include>${project.groupId}:axiom-common-impl</include> </includes> </artifactSet> <relocations> <relocation> <pattern>org.apache.axiom.om.impl.common</pattern> <shadedPattern>org.apache.axiom.om.impl.llom</shadedPattern> </relocation> <relocation> <pattern>org.apache.axiom.soap.impl.common</pattern> <shadedPattern>org.apache.axiom.soap.impl.llom</shadedPattern> </relocation> </relocations> <transformers> <transformer /> </transformers> </configuration> </execution> </executions> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>axiom-buildutils</artifactId> <version>${project.version}</version> </dependency> </dependencies> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.ws.commons.axiom</groupId> <artifactId>axiom-api</artifactId> <version>1.2.13</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-activation_1.1_spec</artifactId> <version>1.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-javamail_1.4_spec</artifactId> <version>1.7.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.codehaus.woodstox</groupId> <artifactId>wstx-asl</artifactId> <version>3.2.9</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>stax-api</artifactId> <groupId>stax</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.1.1</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>avalon-framework</artifactId> <groupId>avalon-framework</groupId> </exclusion> <exclusion> <artifactId>logkit</artifactId> <groupId>logkit</groupId> </exclusion> <exclusion> <artifactId>log4j</artifactId> <groupId>log4j</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.9</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>xmlunit</groupId> <artifactId>xmlunit</artifactId> <version>1.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-stax-api_1.0_spec</artifactId> <version>1.0.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.ws.commons.axiom</groupId> <artifactId>axiom-api</artifactId> <version>1.2.13</version> <classifier>tests</classifier> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.ws.commons.axiom</groupId> <artifactId>axiom-testsuite</artifactId> <version>1.2.13</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>axiom-jaxen-testsuite</artifactId> <groupId>org.apache.ws.commons.axiom</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.ws.commons.axiom</groupId> <artifactId>axiom-common-impl-testsuite</artifactId> <version>1.2.13</version> <scope>test</scope> </dependency> <dependency> <groupId>xalan</groupId> <artifactId>xalan</artifactId> <version>2.7.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>serializer</artifactId> <groupId>xalan</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.ws.commons.axiom</groupId> <artifactId>axiom-testutils</artifactId> <version>1.2.13</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>org.osgi.core</artifactId> <groupId>org.osgi</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>1.4</version> <scope>test</scope> </dependency> </dependencies> </project>