all
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.webguys.ponzu</groupId> <artifactId>all</artifactId> <version>1.2.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright 2011 Goldman Sachs. ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <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> <modules> <module>api</module> <module>impl</module> <module>testutils</module> </modules> <prerequisites> <maven>3.0.4</maven> </prerequisites> <groupId>com.webguys.ponzu</groupId> <artifactId>all</artifactId> <packaging>pom</packaging> <version>1.2.0</version> <organization> <name>The WebGuys</name> </organization> <name>Ponzu Parent Project</name> <description>Ponzu is a collections framework for Java. It has JDK-compatible List, Set and Map implementations with a rich API and set of utility classes that work with any JDK compatible Collections, Arrays, Maps or Strings. </description> <inceptionYear>2011</inceptionYear> <url>https://github.com/kevinbirch/ponzu</url> <scm> <connection>scm:git:git://github.com/kevinbirch/ponzu.git</connection> <developerConnection>scm:git:ssh://git@github.com/kevinbirch/ponzu.git</developerConnection> <url>https://github.com/kevinbirch/ponzu</url> </scm> <issueManagement> <url>https://github.com/kevinbirch/ponzu/issues</url> <system>github</system> </issueManagement> <licenses> <license> <name>Apache</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>kmb</id> <name>Kevin Birch</name> <email>kmb@pobox.com</email> <roles> <role>developer</role> </roles> </developer> <developer> <id>no</id> <name>Nick Orton</name> <email>nick@orton.cc</email> <roles> <role>developer</role> </roles> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <slf4j.version>1.6.4</slf4j.version> <checkstyle.version>2.8</checkstyle.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-nop</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>net.jcip</groupId> <artifactId>jcip-annotations</artifactId> <version>1.0</version> <optional>true</optional> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-antrun-plugin</artifactId> <version>1.6</version> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.2.1</version> </plugin> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>2.4.1</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <version>2.3</version> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>2.7</version> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <version>2.3.1</version> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>2.3.2</version> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8</version> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.2.1</version> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>2.5</version> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <version>2.3</version> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <version>1.0.1</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>1.2</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>clirr-maven-plugin</artifactId> <version>2.3</version> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>2.3.5</version> </plugin> <plugin> <groupId>org.scala-tools</groupId> <artifactId>maven-scala-plugin</artifactId> <version>2.15.2</version> </plugin> <plugin> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.4</version> </plugin> <plugin> <groupId>com.fortify.ps.maven.plugin</groupId> <artifactId>maven-sca-plugin</artifactId> <version>2.6</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.6</source> <target>1.6</target> <showWarnings>true</showWarnings> <showDeprecation>true</showDeprecation> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-checkstyle-plugin</artifactId> <version>${checkstyle.version}</version> <configuration> <configLocation>checkstyle-configuration.xml</configLocation> <logViolationsToConsole>true</logViolationsToConsole> <includeTestSourceDirectory>true</includeTestSourceDirectory> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <doctitle>Collections - ${project.version}</doctitle> <windowtitle>Collections - ${project.version}</windowtitle> <show>public</show> <links> <link>http://docs.oracle.com/javase/6/docs/api/</link> <link>http://docs.oracle.com/javase/6/docs/api/</link> </links> <destDir>${project.version}</destDir> </configuration> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>enforce</id> <configuration> <rules> <DependencyConvergence /> <requirePluginVersions /> <requireJavaVersion> <version>1.7.0</version> </requireJavaVersion> <requireMavenVersion> <version>3.0.2</version> </requireMavenVersion> </rules> </configuration> <goals> <goal>enforce</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <artifactId>maven-jxr-plugin</artifactId> <version>2.3</version> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8</version> <configuration> <doctitle>Collections - ${project.version}</doctitle> <windowtitle>Collections - ${project.version}</windowtitle> <show>public</show> <links> <link>http://docs.oracle.com/javase/6/docs/api/</link> <link>http://junit.sourceforge.net/javadoc/</link> </links> </configuration> </plugin> <plugin> <artifactId>maven-checkstyle-plugin</artifactId> <version>${checkstyle.version}</version> <configuration> <configLocation>checkstyle-configuration.xml</configLocation> <logViolationsToConsole>true</logViolationsToConsole> <includeTestSourceDirectory>true</includeTestSourceDirectory> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>1.2</version> <reportSets> <reportSet> <reports> <report>dependency-updates-report</report> <report>plugin-updates-report</report> <report>property-updates-report</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>2.3.2</version> <configuration> <effort>Max</effort> <threshold>Default</threshold> <xmlOutput>true</xmlOutput> <findbugsXmlOutput>true</findbugsXmlOutput> <excludeFilterFile>findbugs-exclude.xml</excludeFilterFile> </configuration> </plugin> </plugins> </reporting> <profiles> <profile> <id>all</id> <activation> <activeByDefault>true</activeByDefault> </activation> <modules> <module>api</module> <module>impl</module> <module>testutils</module> <module>unit-tests</module> <module>scala-unit-tests</module> <module>acceptance-tests</module> </modules> </profile> <profile> <id>release</id> <modules> <module>api</module> <module>impl</module> <module>testutils</module> </modules> </profile> </profiles> </project>