persistent-graph
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>nl.gohla</groupId>
<artifactId>persistent-graph</artifactId>
<version>0.1.0</version>
</dependency><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>nl.gohla</groupId>
<artifactId>persistent-graph</artifactId>
<version>0.1.0</version>
<packaging>pom</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<modules>
<module>core</module>
<module>impl-dexx</module>
<module>impl-pcollections</module>
<module>test</module>
<module>benchmark</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<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>
<version>2.10.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
<distributionManagement>
<repository>
<id>bintray-gohla</id>
<url>https://api.bintray.com/maven/gohla/maven/persistent-graph/;publish=1</url>
</repository>
</distributionManagement>
<name>Persistent Graph parent POM</name>
<description>Persistent graph parent and aggregate POM</description>
<url>https://github.com/Gohla/persistent-graph</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
</license>
</licenses>
<scm>
<connection>scm:git:https://github.com/Gohla/persistent-graph.git</connection>
<developerConnection>scm:git:git@github.com:Gohla/persistent-graph.git</developerConnection>
<url>https://github.com/Gohla/persistent-graph</url>
</scm>
<developers>
<developer>
<name>Gabriël Konat</name>
<email>g.d.p.konat@tudelft.nl</email>
<organization>Delft University of Technology</organization>
<organizationUrl>http://www.ewi.tudelft.nl/en</organizationUrl>
</developer>
</developers>
</project>