trees-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.mattunderscore.trees</groupId>
<artifactId>trees-parent</artifactId>
<version>0.0.4</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>com.mattunderscore.trees</groupId>
<artifactId>trees-parent</artifactId>
<packaging>pom</packaging>
<version>0.0.4</version>
<description>Parent container for trees library.</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<modules>
<module>trees-api</module>
<module>trees-internal</module>
<module>string-trees</module>
<module>trees-spi</module>
<module>trees-common</module>
<module>trees-utilities</module>
<module>trees-api-examples</module>
</modules>
<licenses>
<license>
<name>BSD 3-clause License</name>
<url>https://raw.github.com/mattunderscorechampion/trees-parent/master/LICENSE</url>
</license>
</licenses>
<scm>
<connection>scm:git:https://github.com/mattunderscorechampion/trees-parent</connection>
<developerConnection>scm:git:https://github.com/mattunderscorechampion/trees-parent</developerConnection>
<url>https://github.com/mattunderscorechampion/trees-parent</url>
<tag>trees-parent-0.0.4</tag>
</scm>
<distributionManagement>
<site>
<id>com.mattunderscore</id>
<name>mattunderscore.com</name>
<url>scp://site@mattunderscore.com/trees-parent/</url>
</site>
</distributionManagement>
<developers>
<developer>
<name>Matthew Champion</name>
<url>http://www.mattunderscore.com</url>
<email>matt_champion1@yahoo.co.uk</email>
<timezone>+0</timezone>
</developer>
</developers>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.4</version>
<configuration>
<goals>deploy</goals>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.6</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<createChecksum>true</createChecksum>
</configuration>
</plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>3.0.1</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.6</version>
<configuration>
<format>xml</format>
<maxmem>256m</maxmem>
<aggregate>true</aggregate>
<check>false</check>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.mattunderscore.trees</groupId>
<artifactId>trees-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.mattunderscore.trees</groupId>
<artifactId>trees-internal</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.mattunderscore.trees</groupId>
<artifactId>trees-spi</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.mattunderscore.trees</groupId>
<artifactId>trees-utilities</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.mattunderscore.trees</groupId>
<artifactId>trees-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.mattunderscore.trees</groupId>
<artifactId>string-trees</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
</dependency>
<dependency>
<groupId>net.jcip</groupId>
<artifactId>jcip-annotations</artifactId>
<version>1.0</version>
</dependency>
</dependencies>
</dependencyManagement>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<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>
</build>
</profile>
</profiles>
</project>