Re: Exposing RESTful web services from WEB-INF/lib

2016-07-16 Thread Ivan St. Ivanov
Thanks for the hints, Soro and Romain! But I decided to just rename my artefact :) Cheers, Ivan On Sat, Jul 16, 2016 at 7:59 PM, Romain Manni-Bucau wrote: > You can redefine it in conf (conf/exclusions.list), in WEB-INF or we have > include/exclude system property for it. > > It is on the refc

Re: Exposing RESTful web services from WEB-INF/lib

2016-07-16 Thread Romain Manni-Bucau
You can redefine it in conf (conf/exclusions.list), in WEB-INF or we have include/exclude system property for it. It is on the refcard https://tomee.apache.org/refcard/refcard.html Le 16 juil. 2016 16:56, "Daniel Cunha" a écrit : > Romain, > > has an option to override the excluded jars? :) > >

Re: Exposing RESTful web services from WEB-INF/lib

2016-07-16 Thread Daniel Cunha
Romain, has an option to override the excluded jars? :) On Sat, Jul 16, 2016 at 11:52 AM, Ivan St. Ivanov wrote: > Hi folks, > > Thanks everybody for quick responses! > > @Romain: you were right. After I renamed the jar to just actuator.jar, it > worked! Awesome! > > Cheers, > Ivan > > On Sat,

Re: Exposing RESTful web services from WEB-INF/lib

2016-07-16 Thread Ivan St. Ivanov
Hi folks, Thanks everybody for quick responses! @Romain: you were right. After I renamed the jar to just actuator.jar, it worked! Awesome! Cheers, Ivan On Sat, Jul 16, 2016 at 5:41 PM, Romain Manni-Bucau wrote: > Should clearly but not if called javaee-actuator.jar cause javaee*.jar are > exc

Re: Exposing RESTful web services from WEB-INF/lib

2016-07-16 Thread Romain Manni-Bucau
Should clearly but not if called javaee-actuator.jar cause javaee*.jar are excluded by default. Le 16 juil. 2016 16:39, "John D. Ament" a écrit : > Looks like he has a master branch where that works properly. > > John > > On Sat, Jul 16, 2016 at 10:35 AM Alex Soto wrote: > > > At mobile now but

Re: Exposing RESTful web services from WEB-INF/lib

2016-07-16 Thread John D. Ament
Looks like he has a master branch where that works properly. John On Sat, Jul 16, 2016 at 10:35 AM Alex Soto wrote: > At mobile now but have you tried adding classes in war project and see if > they work and then extract to jar? > > El 16 jul. 2016 4:34 p. m., "Ivan St. Ivanov" > escribió: > >

Re: Exposing RESTful web services from WEB-INF/lib

2016-07-16 Thread Alex Soto
At mobile now but have you tried adding classes in war project and see if they work and then extract to jar? El 16 jul. 2016 4:34 p. m., "Ivan St. Ivanov" escribió: > Hi folks, > > I have the following case. I am developing a simple web application, which > is empty for the moment, but contains

Exposing RESTful web services from WEB-INF/lib

2016-07-16 Thread Ivan St. Ivanov
Hi folks, I have the following case. I am developing a simple web application, which is empty for the moment, but contains a jar that exposes RESTful web services via JAX-RS. Here is the structure: - actuator.jar: contains class extending javax.ws.rs.core.Application as well as a class annotated