Reputation: 7902
I'm trying to create a Maven project that includes all the Jemmy modules (Jemmy Core, Glass Image, Glass Robot, JemmyFx and JemmyFX browser) because when I tried to build following these instructions here it fails telling me that the JAR files are not available.
I have obtained the sources for Jemmy Core from here and then a zip file of JemmyFx source here (as detailed on this page).
I created a Maven project with 5 modules as described above using the sources but it appears I still have some source files missing.
For example in the class GlassIamge.java
there is the following import:
import org.jemmy.Dimension;
This isn't in any of the sources I have downloaded so far. Looking into the build.xml
files it looks as though there could be further dependencies on other Jemmy JARs which I wasn't first aware of. For example the build.xml
file contains:
<get src="${dist.url}/JemmyCore.jar" dest="${jemmy.lib.dir}"/>
<get> src="${dist.url}/JemmyAWTInput.jar" dest="${jemmy.lib.dir}"/>
<get src="${dist.url}/JemmyBrowser.jar" dest="${jemmy.lib.dir}"/>
<get> src="${dist.url}/JemmySupport.jar" dest="${jemmy.lib.dir}"/>
Which indicates a dependency on JemmyAWTInput.jar
, JemmyBrowser.jar
and JemmySupport.jar
.
So my question is do I need these JARS or preferably the source code so I can fulfil the dependencies in the other modules and if so where can I get it?
Upvotes: 3
Views: 271
Reputation: 175
I am in progress of putting the Jemmy v3 code onto code-tools OpenJDK project: http://hg.openjdk.java.net/code-tools/jemmy/v3/
Whoever interested, you can help me by reviewing the code I am pushing out.
http://mail.openjdk.java.net/pipermail/jemmy-dev/2017-November/000037.html
I would also suggest to subscribe to the [email protected] alias.
Upvotes: 2