Skip to content

Latest commit

 

History

History
50 lines (43 loc) · 1.85 KB

README.adoc

File metadata and controls

50 lines (43 loc) · 1.85 KB

microprofile bom

Deprecated, development has been moved to https://github.com/eclipse/microprofile

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.3</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.