Download dirgra-0.3.jar file

Introduction

You can download dirgra-0.3.jar in this page.

License

EPL

Type List

dirgra-0.3.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.jruby/dirgra/pom.properties
META-INF/maven/org.jruby/dirgra/pom.xml
org.jruby.dirgra.DataIterable.class
org.jruby.dirgra.DataIterator.class
org.jruby.dirgra.DirectedGraph.class
org.jruby.dirgra.Edge.class
org.jruby.dirgra.EdgeTypeIterable.class
org.jruby.dirgra.EdgeTypeIterator.class
org.jruby.dirgra.ExplicitVertexID.class
org.jruby.dirgra.Vertex.class

Pom

dirgra-0.3.pom file content.

<?xml version="1.0" ?>
<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.jruby</groupId>
  <artifactId>dirgra</artifactId>
  <packaging>jar</packaging>
  <version>0.3</version>
  <name>Dirgra</name>
  <url>https://github.com/jruby/dirgra</url>
  <description>Simple Directed Graph</description>

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

  <issueManagement>
    <system>JIRA</system>
    <url>http://jira.codehaus.org/browse/JRUBY</url>
  </issueManagement>

  <scm>
    <connection>scm:git:git://github.com/jruby/dirgra.git</connection>
    <developerConnection>scm:git:git://github.com/jruby/dirgra.git</developerConnection>
    <url>http://github.com/jruby/dirgra</url>
  </scm>

  <licenses>
    <license>
      <name>EPL</name>
      <url>http://www.eclipse.org/legal/epl-v10.html</url>
    </license>
  </licenses>

  <developers>
    <developer>
      <id>enebo</id>
      <name>Thomas E. Enebo</name>
      <email>tom.enebo@gmail.com</email>
    </developer>
  </developers>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.10</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <sourceDirectory>src</sourceDirectory>
    <testSourceDirectory>test</testSourceDirectory>
    <extensions>
      <extension>
        <groupId>org.apache.maven.wagon</groupId> 
        <artifactId>wagon-webdav-jackrabbit</artifactId> 
        <version>2.1</version> 
      </extension> 
    </extensions>
    <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>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-jar-plugin</artifactId>
        <configuration>
          <archive>
            <manifestFile>MANIFEST.MF</manifestFile>
          </archive>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>

POM Entry

<dependency>
   <groupId>org.jruby</groupId>
   <artifactId>dirgra</artifactId>
   <version>0.3</version>
</dependency>

Download

If you think the following dirgra-0.3.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download dirgra-0.3.jar file




PreviousNext

Related