Maven Repository - POM file for XML java-xmlbuilder 0.4 0.4

Summary

java-xmlbuilder.

XML Builder is a utility that creates simple XML documents using relatively sparse Java code.

Declaration

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

<dependency>
   <groupId>com.jamesmurty.utils</groupId>
   <artifactId>java-xmlbuilder</artifactId>
   <version>0.4</version>
</dependency>

If you think this Maven repository POM file listing for java-xmlbuilder 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 java-xmlbuilder-0.4 has 1 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

Depended by

The following table lists the most popular artifacts which are depending on java-xmlbuilder-0.4. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
JEEjets3t 0.8.0
JetS3t is a free, open-source Java toolkit and application suite for Amazon Simple Storage Service (Amazon S3), Amazon CloudFront content delivery network, and Google Storage for Developers.
43

Plugin

The following plugins are used in the java-xmlbuilder-0.4.jar

  1. maven-gpg-plugin
  2. maven-javadoc-plugin
  3. maven-source-plugin

Packages

The following packages are defined in the java-xmlbuilder-0.4.jar

com.jamesmurty.utils
net.iharder.base64




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>com.jamesmurty.utils</groupId>
  <artifactId>java-xmlbuilder</artifactId>
  <packaging>jar</packaging>
  <version>0.4</version>
  <name>java-xmlbuilder</name>
  <description>XML Builder is a utility that creates simple XML documents using relatively sparse Java code</description>
  <url>http://code.google.com/p/java-xmlbuilder/</url>
  <licenses>
    <license>
      <name>Apache License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <scm>
    <connection>scm:svn:http://java-xmlbuilder.googlecode.com/svn/tags/java-xmlbuilder-0.4</connection>
    <developerConnection>scm:svn:https://java-xmlbuilder.googlecode.com/svn/tags/java-xmlbuilder-0.4</developerConnection>
    <url>http://java-xmlbuilder.googlecode.com/svn/tags/java-xmlbuilder-0.4</url>
  </scm>
  

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  
  <parent>
    <groupId>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>3</version>
  </parent>
  
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <executions>
          <execution>
            <id>attach-sources</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <executions>
          <execution>
            <id>attach-javadocs</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-gpg-plugin</artifactId>
        <executions>
          <execution>
            <id>sign-artifacts</id>
            <phase>verify</phase>
            <goals>
              <goal>sign</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  
  <repositories>
    <repository>
      <id>maven2-repository.dev.java.net</id>
      <name>Java.net Repository for Maven</name>
      <url>http://download.java.net/maven/2/</url>
    </repository>
  </repositories>

</project>