Maven Repository - POM file for XML decentxml 1.4 1.4

Summary

DecentXML.

A decent XML parser. Since it's decent, it's not compatible with the W3C and therefore, it can do roundtripping..

Declaration

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

<dependency>
   <groupId>de.pdark</groupId>
   <artifactId>decentxml</artifactId>
   <version>1.4</version>
</dependency>

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





License

Name:New BSD License
URL: http://www.opensource.org/licenses/bsd-license.php.

Depends on

The decentxml-1.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-dep 4.10
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.
177

Plugin

The following plugins are used in the decentxml-1.4.jar

  1. cobertura-maven-plugin
  2. maven-assembly-plugin
  3. maven-compiler-plugin
  4. maven-javadoc-plugin
  5. maven-release-plugin
  6. maven-scm-plugin
  7. maven-site-plugin
  8. maven-source-plugin




Packages

The following packages are defined in the decentxml-1.4.jar

de.pdark.decentxml
de.pdark.decentxml.dtd
de.pdark.decentxml.mapping
de.pdark.decentxml.validation

POM File Source

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">
    <modelVersion>4.0.0</modelVersion>
    <groupId>de.pdark</groupId>
    <artifactId>decentxml</artifactId>
    <version>1.4</version>
    <name>DecentXML</name>
    <description>
        A decent XML parser. Since it's decent, it's not
        compatible with the W3C and therefore, it can do roundtripping. 
    </description>
    <url>http://code.google.com/p/decentxml/</url>
    
    <inceptionYear>2008</inceptionYear>
    <licenses>
        <license>
            <name>New BSD License</name>
            <url>http://www.opensource.org/licenses/bsd-license.php</url>
        </license>
    </licenses>
    
    

    <issueManagement>
        <system>Google Code</system>
        <url>http://code.google.com/p/decentxml/issues/list</url>
    </issueManagement>
    
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit-dep</artifactId>
            <version>4.10</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
    
    <properties>
        <target.dir>target</target.dir>
        <version.cobertura-maven-plugin>2.5.1</version.cobertura-maven-plugin>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <compileSource>1.5</compileSource>
    </properties>
    
    <profiles>
        <profile>
            <id>eclipse-folders</id>
            <properties>
                <target.dir>target-eclipse</target.dir>
            </properties>
        </profile>
        
        <!-- I have a patched version of Cobertura that allows to mark a line as
             irrelevant. For the rest of you, 2.2 (above) should work. -->
        <profile>
            <id>c2.3</id>
            <properties>
                <version.cobertura-maven-plugin>2.3</version.cobertura-maven-plugin>
            </properties>
        </profile>

        <profile>
            <id>release-sign-artifacts</id>
            <activation>
                <property>
                    <name>performRelease</name>
                    <value>true</value>
                </property>
            </activation>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-gpg-plugin</artifactId>
                        <version>1.3</version>
                        <executions>
                            <execution>
                                <id>sign-artifacts</id>
                                <phase>verify</phase>
                                <goals>
                                    <goal>sign</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>

    </profiles>
    
    <build>
        <outputDirectory>${basedir}/${target.dir}/classes</outputDirectory>
        <testOutputDirectory>${basedir}/${target.dir}/test-classes</testOutputDirectory>
    
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.3.2</version>
                <configuration>
                    <source>${compileSource}</source>
                    <target>${compileSource}</target>
                </configuration>
            </plugin>

            <plugin>
                <artifactId>maven-source-plugin</artifactId>
                <version>2.1.2</version>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <phase>verify</phase>
                        <goals>
                            <goal>jar</goal>
                            <goal>test-jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

            <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <configuration>
                    <descriptorRefs>
                        <descriptorRef>bin</descriptorRef>
                        <descriptorRef>src</descriptorRef>
                    </descriptorRefs>
                </configuration>
                <executions>
                    <execution>
                        <id>make-assembly</id>
                        <phase>package</phase>
                        <goals>
                            <goal>attached</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-scm-plugin</artifactId>
                <version>1.6</version>
            </plugin>

            <plugin>
                <artifactId>maven-javadoc-plugin</artifactId>
                <executions>
                    <execution>
                        <id>jar</id>
                        <phase>package</phase>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>cobertura-maven-plugin</artifactId>
                <version>${version.cobertura-maven-plugin}</version>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-release-plugin</artifactId>
                <configuration>
                    <!-- TODO Update for Mercurial -->
                    <tagBase>https://decentxml.googlecode.com/svn/tags/</tagBase>
                </configuration>
            </plugin>
            
            <plugin>
                <artifactId>maven-site-plugin</artifactId>
                <version>3.0</version>
                <configuration>
                    <reportPlugins>
                        <plugin>
                            <groupId>org.codehaus.mojo</groupId>
                            <artifactId>cobertura-maven-plugin</artifactId>
                            <version>2.5.1</version>
                        </plugin>
                        
                        <plugin>
                            <artifactId>maven-javadoc-plugin</artifactId>
          <version>2.8</version>
                        </plugin>
            
                        <plugin>
                            <artifactId>maven-jxr-plugin</artifactId>
                            <version>2.3</version>
                        </plugin>
            
                        <plugin>
                            <artifactId>maven-surefire-report-plugin</artifactId>
                            <version>2.11</version>
                        </plugin>
                    </reportPlugins>
                </configuration>
            </plugin>

        </plugins>
        
        <pluginManagement>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-release-plugin</artifactId>
                    <version>2.2.2</version>
                </plugin>
                
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-assembly-plugin</artifactId>
                    <version>2.2.2</version>
                </plugin>
                
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-surefire-plugin</artifactId>
                    <version>2.11</version>
                 </plugin>
                
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-javadoc-plugin</artifactId>
                    <version>2.8</version>
                 </plugin>
            </plugins>
        </pluginManagement>
    </build>

    <!-- TODO Update for Mercurial -->    
    <scm>
        <connection>scm:svn:http://decentxml.googlecode.com/svn/trunk/</connection>
        <developerConnection>scm:svn:https://decentxml.googlecode.com/svn/trunk</developerConnection>
        <url>http://code.google.com/p/decentxml/source/browse/</url>
    </scm>

    <distributionManagement>
        <snapshotRepository>
          <id>sonatype-nexus-snapshots</id>
          <name>Sonatype Forge Snapshots Repository</name>
          <url>http://oss.sonatype.org/content/repositories/snapshots</url>
        </snapshotRepository>
        <repository>
          <id>sonatype-nexus-staging</id>
          <name>Sonatype Forge Release Repository</name>
          <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
        </repository>
    </distributionManagement>

    
</project>