Skip to content

Latest commit

 

History

History
50 lines (44 loc) · 1.76 KB

README.adoc

File metadata and controls

50 lines (44 loc) · 1.76 KB

microprofile bom

Eclipse MicroProfile "Bill of Materials"

Eclipse github repository for defining the content of the MicroProfile deliverables.

Usage

Add this dependency (adjusting the version number appropriately) to your project’s pom.xml:

<project ...>
...
    <dependencies>
        <dependency>
            <groupId>org.eclipse.microprofile</groupId>
            <artifactId>microprofile</artifactId>
            <version>1.2</version>
            <type>pom</type>
            <scope>provided</scope>
        </dependency>
    </dependencies>
</project>

You will then be able to work with all the APIs supported by MicroProfile implementations.

Note
This style of BOM does not go in a <dependencyManagement>…​</dependencyManagement> section, using import scope, and you cannot add dependencies declared in the BOM without version elements as is typically done with that style of BOM.