sonar-blueprints
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.codehaus.sonar</groupId>
<artifactId>sonar-blueprints</artifactId>
<version>2.2.0-java5</version>
</dependency><?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>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>org.codehaus.sonar</groupId>
<artifactId>sonar-blueprints</artifactId>
<version>2.2.0-java5</version>
<packaging>pom</packaging>
<url>http://blueprints.tinkerpop.com</url>
<name>Blueprints: A Property Graph Model Interface</name>
<description>Blueprints is a property graph model interface. It provides implementations, ouplementations, test
suites, and supporting utilities.
</description>
<inceptionYear>2010</inceptionYear>
<licenses>
<license>
<name>BSD 3-Clause</name>
<url>http://www.opensource.org/licenses/BSD-3-Clause</url>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:tinkerpop/blueprints.git</connection>
<developerConnection>scm:git:git@github.com:tinkerpop/blueprints.git</developerConnection>
<url>git@github.com:tinkerpop/blueprints.git</url>
</scm>
<contributors>
<contributor>
<name>Marko A. Rodriguez</name>
<email>marko@markorodriguez.com</email>
<url>http://markorodriguez.com</url>
</contributor>
<contributor>
<name>Stephen Mallette</name>
<email>spmva@genoprime.com</email>
<url>http://stephen.genoprime.com</url>
</contributor>
<contributor>
<name>Joshua Shinavier</name>
<email>josh@fortytwo.net</email>
<url>http://fortytwo.net</url>
</contributor>
<contributor>
<name>Luca Garulli</name>
<email>l.garulli@orientechnologies.com</email>
<url>http://zion-city.blogspot.com</url>
</contributor>
<contributor>
<name>Darrick Wiebe</name>
<email>darrick@innatesoftware.com</email>
<url>http://github.com/pangloss</url>
</contributor>
<contributor>
<name>Matthias Broecheler</name>
<email>me@matthiasb.com</email>
<url>http://matthiasb.com</url>
</contributor>
</contributors>
<distributionManagement>
<repository>
<id>codehaus-nexus-staging</id>
<name>Codehaus Release Repository</name>
<url>https://nexus.codehaus.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>codehaus.org</id>
<url>https://nexus.codehaus.org/service/local/staging/deploy/maven2</url>
<uniqueVersion>false</uniqueVersion>
</snapshotRepository>
</distributionManagement>
<modules>
<module>blueprints-core</module>
<module>blueprints-test</module>
<!--
<module>blueprints-graph-jung</module>
<module>blueprints-rexster-graph</module>
<module>blueprints-dex-graph</module>
<module>blueprints-neo4j-graph</module>
<module>blueprints-neo4jbatch-graph</module>
<module>blueprints-orient-graph</module>
<module>blueprints-graph-sail</module>
<module>blueprints-sail-graph</module>
-->
</modules>
<properties>
<blueprints.version>2.2.0-java5</blueprints.version>
<sesame.version>2.6.4</sesame.version>
<sesametools.version>1.6</sesametools.version>
<junit.version>4.5</junit.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<build>
<directory>${basedir}/target</directory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</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.8</version>
<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>
<version>1.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.11</version>
<configuration>
<runOrder>random</runOrder>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8</version>
<configuration>
<aggregate>true</aggregate>
</configuration>
</plugin>
</plugins>
</reporting>
</project>