Maven Repository - POM file for XML Parser jettison 1.3.2 1.3.2

Summary

Jettison.

A StAX implementation for JSON..

Declaration

Here is the list of declaration for jettison. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.codehaus.jettison</groupId>
   <artifactId>jettison</artifactId>
   <version>1.3.2</version>
</dependency>

If you think this Maven repository POM file listing for jettison is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

License

Name:Apache License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.

Depends on

The jettison-1.3.2 has 3 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
JUnitjunit 3.8.1
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.
1966
XML Parserstax-api 1.0.1
StAX API is the standard java XML processing API defined by JSR-173
254




Plugin

The following plugins are used in the jettison-1.3.2.jar

  1. maven-bundle-plugin
  2. maven-compiler-plugin
  3. maven-javadoc-plugin
  4. maven-project-info-reports-plugin
  5. maven-release-plugin
  6. maven-surefire-plugin

Packages

The following packages are defined in the jettison-1.3.2.jar

org.codehaus.jettison
org.codehaus.jettison.badgerfish
org.codehaus.jettison.json
org.codehaus.jettison.mapped
org.codehaus.jettison.util




POM File Source

Here is the content of the POM file.

<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>
  <groupId>org.codehaus.jettison</groupId>
  <artifactId>jettison</artifactId>
  <version>1.3.2</version>
  <packaging>bundle</packaging>
  <name>Jettison</name>
  <description>A StAX implementation for JSON.</description>
  <licenses>
    <license>
      <name>Apache License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0</url>
    </license>
  </licenses>
  <parent>
    <groupId>org.codehaus</groupId>
    <artifactId>codehaus-parent</artifactId>
    <version>3</version>
  </parent>
  
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>stax</groupId>
      <artifactId>stax-api</artifactId>
      <version>1.0.1</version>
    </dependency>
  <dependency> 
    <groupId>woodstox</groupId> 
    <artifactId>wstx-asl</artifactId> 
    <version>3.2.2</version> 
    <scope>test</scope>
  </dependency>    
  </dependencies>
  <scm>
    <connection>scm:svn:http://svn.codehaus.org/jettison/tags/jettison-1.3.2</connection>
    <developerConnection>scm:svn:https://svn.codehaus.org/jettison/tags/jettison-1.3.2</developerConnection>
    <url>scm:svn:https://svn.codehaus.org/jettison/tags/jettison-1.3.2</url>
  </scm>
  <build>
    <extensions>
      <extension>
      <groupId>org.apache.maven.wagon</groupId>
      <artifactId>wagon-webdav</artifactId>
      <version>1.0-beta-2</version>
      </extension>
    </extensions>
    
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.5</source>
          <target>1.5</target>
          <optimize>true</optimize>
          <debug>true</debug>
          <showDeprecation>true</showDeprecation>
          <showWarnings>true</showWarnings>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-release-plugin</artifactId>
        <configuration>
          <tagBase>https://svn.codehaus.org/jettison/tags/</tagBase>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <extensions>true</extensions>
        <version>1.0.0</version>
        <configuration>
         <instructions>
           <Bundle-Name>${artifactId}</Bundle-Name>
           <Bundle-SymbolicName>${groupId}.${artifactId}</Bundle-SymbolicName>
           <Export-Package>org.codehaus.jettison*;version=${project.version}</Export-Package>
           <Import-Package>*</Import-Package>
           <Private-Package>!*</Private-Package>
           <Implementation-Title>${project.name}</Implementation-Title>
           <Implementation-Version>${project.version}</Implementation-Version>
         </instructions>
        </configuration>
      </plugin>
      
    </plugins>
    
  </build>
  
  <reporting>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-project-info-reports-plugin</artifactId>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <forkMode>pertest</forkMode>
        </configuration>
      </plugin>
    </plugins>
  </reporting>

  <!--
  <distributionManagement>
    <repository>
      <id>codehaus.org</id>
      <name>jettison Central Repository</name>
      <url>dav:https://dav.codehaus.org/repository/jettison/</url>
    </repository>
    <snapshotRepository>
      <id>codehaus.org</id>
      <name>jettison Central Development Repository</name>
      <url>dav:https://dav.codehaus.org/snapshots.repository/jettison/</url>
    </snapshotRepository>
    <site>
      <id>codehaus.org</id>
      <url>dav:https://dav.codehaus.org/jettison/</url>
    </site>
  </distributionManagement>
  -->
</project>