I'm using Eclipse 2018-12 with JDK 11.
If I use .class files automatically built by Eclipse to build my jar file, things works fine (the goal is an aar file, for a very simple web service).
But if I use an Ant build, my jar isn't working.
To be clearer: I created a simple Java project, with a package named ws and Serv.java in it; Eclipse automatically created a directory named modules.hello.jigsaw with ws/Serv.class inside.
If I use this class file (and services.xml, of course) to make Serv.jar, all is good.
But if I compile with an Ant build, generating my Serv.class, the aar file is unloadable, it isn't correct.
Probably I'm not using the right javac command.
So, my real question is: is there any way to know "how" Eclipse compiles ? which options it uses when making a javac command ?
Thanks in advance