Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 1.4 KB

README.md

File metadata and controls

29 lines (23 loc) · 1.4 KB

utils4maven

Utilities for Maven development

The library does not contain much content yet - Except:

Content Description
MavenPomReader Loads the Maven POMs for an artifact and merges the content with all parent POMs. See Example.
MavenLogger* Implementation of org.slf4j.Logger transforming SLF4J messages to Maven log messages. Credits: Yegor Bugayenko

Snapshots

Snapshots can be found on the OSS Sonatype Snapshots Repository.

Add the following to your .m2/settings.xml to enable snapshots in your Maven build:

<repository>
    <id>sonatype.oss.snapshots</id>
    <name>Sonatype OSS Snapshot Repository</name>
    <url>http://oss.sonatype.org/content/repositories/snapshots</url>
    <releases>
        <enabled>false</enabled>
    </releases>
    <snapshots>
        <enabled>true</enabled>
    </snapshots>
</repository>