0 Replies Latest reply on Jun 19, 2019 5:36 AM by nimo22

    use microprofile-apis in Wildfly

    nimo22

      I want to use all Microprofile-Apis within my jee-app which is served by Wildfly.

       

      What is the right maven dependencies for that?

       

      Is this sufficient?:

       

      <dependencies>

      <!-- include all JEE-APIs -->

      <dependency>

      <groupId>javax</groupId>

      <artifactId>javaee-api</artifactId>

      <version>7.0</version>

      <scope>provided</scope>

      </dependency>

      <!-- include all MicroProfle-APIs -->

      <dependency>

          <groupId>io.thorntail</groupId>

          <artifactId>microprofile</artifactId>

          <version>2.4.0.Final</version>

      </dependency>

      </dependencies>

       

       

      Do I have to include anything else in maven to use microprofile and jee side by side?

      Do I have to configure anything else (e.g. within standalone.xml) to use microprofile-APIs correctly within my app?

      Are there any starter kits or maven-archetypes to show how to use jee and microprofile side by side within wildfly server?