You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomee.apache.org by GitBox <gi...@apache.org> on 2019/04/01 19:28:59 UTC

[GitHub] [tomee] otaviojava opened a new pull request #454: Fixes Eclipse Microprofile-Open-API when it reads Application. [TOMEE-2502]

otaviojava opened a new pull request #454: Fixes  Eclipse Microprofile-Open-API when it reads Application. [TOMEE-2502]
URL: https://github.com/apache/tomee/pull/454
 
 
   This PR fixes the Eclipse Microprofile Open-API.
   Briefly, at the current version, TomEE does not read information from the `Application` class that has Open-API annotation.
   
   
   ```
   @ApplicationPath("api")
   @OpenAPIDefinition(info = @Info(
           title = "Example application",
           version = "1.0.0",
           contact = @Contact(
                   name = "Otavio",
                   email = "otavio@otavio.com",
                   url = "http://www.otaviojava.com.br")
   ),
           servers = {
                   @Server(url = "/example", description = "localhost")
           }
   )
   public class MVCApplication extends Application {
   }
   ```
   
   https://issues.apache.org/jira/browse/TOMEE-2502

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services