Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.39 KB

README.markdown

File metadata and controls

32 lines (24 loc) · 1.39 KB

Maven Composites

Branch Status
Master Build Status Maven Central

This project sets up groups of maven dependencies for Java projects.

Dependencies Provided

  • database : jdbi3 & mysql
  • dropwizard : dropwizard and dependencies
  • immutables : immutables, guava & error annotations
  • unit-test : junit, assertj, mockito

Usage

Below is the basic usage pattern for inclusion in a pom:

<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">
    <dependencies>
        <dependency>
            <groupId>com.lasmanis.maven.composites</groupId>
            <artifactId>CHANGEME</artifactId>
            <version>CHANGEME</version>
        </dependency>
    </dependencies>
</project>

Make sure to set the artifactId and version of the composite to attach. You can attach more than one composite to a project.