Description
Provides a dependency projects can use with scope `provided` along side the pre-existing dependency that contains all TomEE libraries.
For example, to get TomEE MicroProfile into your classpath with the proper scopes, use these dependencies:
<dependency> <groupId>org.apache.tomee.bom</groupId> <artifactId>tomee-microprofile-api</artifactId> <version>8.0.7-SNAPSHOT</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.tomee.bom</groupId> <artifactId>tomee-microprofile</artifactId> <version>8.0.7-SNAPSHOT</version> <scope>test</scope> </dependency>