Maven Repository - POM file for Data Structure org.abego.treelayout.core 1.0.1 1.0.1

Summary

abego TreeLayout Core.

Efficient and customizable TreeLayout Algorithm in Java..

Declaration

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

<dependency>
   <groupId>org.abego.treelayout</groupId>
   <artifactId>org.abego.treelayout.core</artifactId>
   <version>1.0.1</version>
</dependency>

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

License

Name:BSD 3-Clause "New" or "Revised" License (BSD-3-Clause)
URL: http://treelayout.googlecode.com/files/LICENSE.TXT.

Depends on

The org.abego.treelayout.core-1.0.1 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 4.8.2
JUnit is a regression testing framework. It is used by the developer who implements unit tests in Java.
919




Depended by

The following table lists the most popular artifacts which are depending on org.abego.treelayout.core-1.0.1. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
Parserantlr4-runtime 4.1
The ANTLR 4 Runtime
6
Parserantlr4-runtime 4.2
The ANTLR 4 Runtime
13

Plugin

The following plugins are used in the org.abego.treelayout.core-1.0.1.jar

  1. maven-compiler-plugin
  2. maven-jar-plugin

Packages

The following packages are defined in the org.abego.treelayout.core-1.0.1.jar

org.abego.treelayout
org.abego.treelayout.internal.util
org.abego.treelayout.internal.util.java.lang
org.abego.treelayout.internal.util.java.lang.string
org.abego.treelayout.internal.util.java.util
org.abego.treelayout.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/xsd/maven-4.0.0.xsd">

    <modelVersion>4.0.0</modelVersion>

    <groupId>org.abego.treelayout</groupId>
    <artifactId>org.abego.treelayout.core</artifactId>
    <version>1.0.1</version>
    <packaging>jar</packaging>

    <name>abego TreeLayout Core</name>
    <description>Efficient and customizable TreeLayout Algorithm in Java.</description>
    <url>http://code.google.com/p/treelayout/</url>

    <parent>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>

    <licenses>
        <license>
            <name>BSD 3-Clause "New" or "Revised" License (BSD-3-Clause)</name>
            <url>http://treelayout.googlecode.com/files/LICENSE.TXT</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <scm>
        <url>http://code.google.com/p/treelayout/source/browse/</url>
        <connection>scm:svn:http://treelayout.googlecode.com/svn/</connection>
    </scm>

    

    <organization>
        <name>abego Software GmbH, Germany</name>
        <url>http://abego-software.de</url>
    </organization>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.3.2</version>
                <configuration>
                    <source>1.5</source>
                    <target>1.5</target>
                </configuration>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <version>2.3.2</version>
                <configuration>
                    <archive>
                        <manifest>
                            <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
                            <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
                        </manifest>
                    </archive>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.8.2</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>