Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jakartaee-tck-dev] some remaining work for javax => jakarta classes ...

Hi Scott,

If no one has already started, let me pick up 63 javax_el & 771 javax_faces references along with changing the respective folder names too.

Regards,
Alwin

On 06/05/20 11:28 PM, Scott Marlow wrote:
Hi,

I did a (rough) search for references to javax classes under the src tree, there are more in root, but I wanted to start tracking our progression to having zero of these under src:

3 files have javax.activation.

2 files have javax.ejb.

63 files have javax.el.
I think these are folder javax_el references.

47 files have javax.enterprise.

771 files have javax.faces.
javax_faces folder references.

3 files have javax.json.

247 files have javax.jws.
https://github.com/eclipse-ee4j/jakartaee-tck/issues/228 -> Rohit is working on this.

29 files have javax.persistence properties + some classes referenced.

1 file have javax.security.

7155 files have javax.servlet (work in progress).

14 files have javax.transaction properties (javax.transaction.global.mode, javax.transaction.global.timeout).

The above output is mostly from getting a list of jakarta.* api classes from jakarta.jakartaee-api-9.0.0-RC1.jar, changing the names to javax and seeing what we can find under the Platform TCK src tree:

cd /tmp
wget https://repo1.maven.org/maven2/jakarta/platform/jakarta.jakartaee-api/9.0.0-RC1/jakarta.jakartaee-api-9.0.0-RC1.jar
cd $TCK/src
jar tf /tmp/jakarta.jakartaee-api-9.0.0-RC1.jar | grep --no-filename "jakarta/[a-z]*/" | cut -d'/' -f1,2|sort | uniq | tr / . | sed -e 's/jakarta/javax/g' | sed -e 's/\.class//g'  | while read OUT; do echo $OUT;grep -r --exclude-dir=signaturetest $OUT | wc -l; done >> /tmp/counts.txt

Sorry for the quick mail but I figure it is better to communicate quickly, than not at all, with this information.  We are getting close to completing the javax => jakarta changes, good progress everyone with that! :-)

Scott






_______________________________________________
jakartaee-tck-dev mailing list
jakartaee-tck-dev@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/jakartaee-tck-dev


Back to the top