[GitHub] dblevins merged pull request #6: Replaced README.txt with README.adoc

2019-01-17 Thread GitBox
dblevins merged pull request #6: Replaced README.txt with README.adoc URL: https://github.com/apache/tomee-tck/pull/6 This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub

Re: Jakarta EE TCK

2019-01-17 Thread César Hernández Mendoza
Hi, I opened a PR to add the .adoc version of the readme file. I also did a couple of small editions based on my setup experience. The PR is ready for review: https://github.com/apache/tomee-tck/pull/6 El mar., 15 ene. 2019 a las 4:41, Mark Struberg () escribió: > +1 and thanks! > > Also am

Re: JakartaEE TCK

2019-01-17 Thread César Hernández Mendoza
Hi, I was able to set up my local environment and after executing: ./runtests --web tomee-plume com.sun.ts.tests.ejb30.bb.localaccess.statelessclient It seems I got a successful result [1] :). After reading the readme, I wonder if there is a proper way to split the entire set of tests in sub

Re: JakartaEE TCK

2019-01-17 Thread Gurkan Erdogdu
I have also executed some other tests and successfully PASSED, Woww, amazing, working with open source, free TCK :) Regards. Gurkan- On Fri, Jan 18, 2019 at 1:52 AM Gurkan Erdogdu wrote: > I have now successfully executed the try.sh and see the PASSED lines :) I > dont know whether it is true

Re: JakartaEE TCK

2019-01-17 Thread Gurkan Erdogdu
I have now successfully executed the try.sh and see the PASSED lines :) I dont know whether it is true or not but I have done 2 small changes in CommandSupport.groovy. Here: +builder.appendAll("openejb-core-*.jar") +//builder.directory = "${project.build.directory}/lib" -

Re: How can I help?

2019-01-17 Thread César Hernández Mendoza
Hi Bogdan, welcome to TomEE! This is the reference page to learn more about the tooling, process, and how to contribute: http://tomee.apache.org/community/index.html We have currently a couple of Epics targeted for new contributors, please check for instance: Generation of MP examples:

Re: MicroProfile Integration in Plus and Plume

2019-01-17 Thread j4fm
They are not small or independent but I will see what I can put together. This looks related... http://tomee-openejb.979440.n4.nabble.com/PRIVATE-ApplicationComposer-7-0-0-and-Jars-td4677302.html "In CdiScanner I can see the classes in BeanInfo beans. But just after the following condition

Re: MicroProfile Integration in Plus and Plume

2019-01-17 Thread Roberto Cortez
Well that is one of the issues. There are other issues that I’ve seen being thrown by the apps being deployed on the TomEE TCK, but I didn’t focus on them yet. Not sure if they are the same as you are describing here. Any chance that you can send me a sample that replicates this problem?

How can I help?

2019-01-17 Thread Bogdan Stirbat
Hi! I am Bogdan Știrbăț, a software engineer located in Bucharest, Romania. I'm interested in JEE, Spring, enterprise computing, microservices. I find working on this project is an opportunity to both learn more about the topics I'm interested in, and to contribute something back to the

Re: MicroProfile Integration in Plus and Plume

2019-01-17 Thread j4fm
I'm not sure the problem I'm having with our existing apps when MP is in Plus is related to the root context. This is with pull304 you wrote. This problem doesn't happen with only a simply basic war file in TomEE only when our apps are in (class loader and war files). The traditional contexts

Re: CmpJpaConversion does not work in an Ear package [WIP]

2019-01-17 Thread Otávio Gonçalves de Santana
I created a solution, could you review it, please? I'm working on a test to it. On Thu, Jan 17, 2019 at 10:09 AM Otávio Gonçalves de Santana < osant...@tomitribe.com> wrote: > > > I put these codes at CmpJpaConversion: > > > URL resource = CmpJpaConversion.class.getResource("."); > Path path =

[GitHub] dblevins merged pull request #16: TOMEE-2444 Enable language support for examples

2019-01-17 Thread GitBox
dblevins merged pull request #16: TOMEE-2444 Enable language support for examples URL: https://github.com/apache/tomee-site-generator/pull/16 This is an automated message from the Apache Git Service. To respond to the

Re: Adding Java EE Security 1.0 Spec to geronimo-specs

2019-01-17 Thread Jean-Louis Monteiro
Ok, if there is no objection till tomorrow I'll merge it. I'll comment on the PR as well. -- Jean-Louis Monteiro http://twitter.com/jlouismonteiro http://www.tomitribe.com On Thu, Jan 17, 2019 at 5:47 PM Jean-Louis Monteiro < jlmonte...@tomitribe.com> wrote: > Yes of course I can do it > > Le

Re: Adding Java EE Security 1.0 Spec to geronimo-specs

2019-01-17 Thread Jean-Louis Monteiro
Yes of course I can do it Le jeu. 17 janv. 2019 à 17:43, Roberto Cortez a écrit : > Hi JL, > > I just opened PR https://github.com/apache/geronimo-specs/pull/14 < > https://github.com/apache/geronimo-specs/pull/14> with the Security API > spec for Geronimo. > > If everything is fine and after

Re: Adding Java EE Security 1.0 Spec to geronimo-specs

2019-01-17 Thread Roberto Cortez
Hi JL, I just opened PR https://github.com/apache/geronimo-specs/pull/14 with the Security API spec for Geronimo. If everything is fine and after the merge, can you also deploy a snapshot version of it so we can use it? Thanks! Cheers,

Re: Where do we remember outstanding dependency updates for release?

2019-01-17 Thread Frankie
Absolutely. What I meant was a ticket to "store" the information about the proceeding concerning SNAPSHOT dependencies when releasing though. Obviously not clearly expressed by me ... -- Sent from: http://tomee-openejb.979440.n4.nabble.com/TomEE-Dev-f982480.html

Re: CmpJpaConversion does not work in an Ear package [WIP]

2019-01-17 Thread Otávio Gonçalves de Santana
I put these codes at CmpJpaConversion: URL resource = CmpJpaConversion.class.getResource("."); Path path = Paths.get(resource.toURI()); Stream list = Files.list(path); list.map(Path::getFileName).forEach(System.out::println); The output: SunConversion$SunColumnName.class WsDeployer.class

Re: CmpJpaConversion does not work in an Ear package [WIP]

2019-01-17 Thread Jonathan Gallimore
I'd say we should try the same jar that persistence.xml is in. That said, I thought it was loaded via the classloader, so what's on the classpath when we try and read this file? Jon On Thu, Jan 17, 2019 at 11:44 AM Otávio Gonçalves de Santana < osant...@tomitribe.com> wrote: > Given an EAR

CmpJpaConversion does not work in an Ear package [WIP]

2019-01-17 Thread Otávio Gonçalves de Santana
Given an EAR package that has an EJB jar with a persistence.xml within a mapping-file element. The CmpJpaConversion does not find this reference because when

Re: JakartaEE TCK

2019-01-17 Thread Gurkan Erdogdu
Hi Jon Yeah I am with master but still receive the same error. On Thu, Jan 17, 2019 at 1:03 PM Jonathan Gallimore < jonathan.gallim...@gmail.com> wrote: > It looks like you're running into the same issue Jean-Louis had yesterday - > can you check that you're up to date with master? > > Thanks >

Re: JakartaEE TCK

2019-01-17 Thread Jonathan Gallimore
It looks like you're running into the same issue Jean-Louis had yesterday - can you check that you're up to date with master? Thanks Jon On Thu, Jan 17, 2019 at 6:30 AM Gurkan Erdogdu wrote: > I received the following error when I run the following command from > tomee-tck, any idea? > >