eclipse-ee4j / starter

Eclipse Starter for Jakarta EE
Eclipse Public License 2.0
49 stars 40 forks source link

Add support for MicroProfile #152

Open m-reza-rahman opened 1 year ago

m-reza-rahman commented 1 year ago

Add support for MicroProfile APIs in all sensible aspects of the Jakarta Starter.

rsoika commented 1 year ago

My opinion on this topic is, that adding microprofile support is actually trivial. You get these practically for free, as all servers support this. Adding the following maven dependency is all we need:

<dependency>
<groupId>org.eclipse.microprofile</groupId>
<artifactId>microprofile</artifactId>
<version>${microprofile.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>

And now a developer can make use of Microprofile-Config or the Health API which are really great features. Jakarta-EE should not sweep such powerfull options under the carpet.

m-reza-rahman commented 1 year ago

The current consensus is that this is a low-priority item. We will probably not tackle this until the Jakarta Starter is significantly mature. Concise input from key community members can be found here: https://docs.google.com/spreadsheets/d/1bthiYVjX_UK7Xp2qQmq93awPwVhVCDnprGdzeMtv_ow/edit?usp=sharing. A discussion thread on the mailing list can be found here: https://www.eclipse.org/lists/starter-dev/msg00189.html.