Eclipse github repository for defining the content of the MicroProfile deliverables.
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. |