Nimbus look and feel jar file not found - jar

I have googled for two hours ,but unable to find nimbus look and feel jar. I am using jdk6 version ,need to add this library to my project..please provide useful links to download nimbus jar file
Regards
Krishnareddy.

There you go, binaries and maven dependency:
http://mvnrepository.com/artifact/net.java.dev.nimbus/nimbus ,also:
http://mvnrepository.com/search.html?query=nimbus

Related

Castor library JAR

I have a serious problem, I need the JAR version 1.3.3 or 1.4.1 of :
castor (mainly),
castor ddlgen,
castor codegen and
castor anttasks
I as looking for these but I just found version 1.2 and. lower.
It would be great if some of you can help me.
Thanks in advance.
Havent used that lib but the general workflow is
option 1
In docs for that lib https://github.com/castor-data-binding/castor
it says you can download jar files from Sonatype's OSS snapshot
so go to that link
https://oss.sonatype.org/content/groups/public/org/codehaus/castor/castor-core/
https://oss.sonatype.org/content/groups/public/org/codehaus/castor/castor-anttasks/
and browse around. Here you can find those versions
I guess you are not using maven. You have to use ant or something. In that case you can still to this
option 2
Go to maven repo
https://mvnrepository.com/artifact/org.codehaus.castor
Pick what lib you need for example
https://mvnrepository.com/artifact/org.codehaus.castor/castor-xml/1.4.1
and in table you can find links to jars to download
option 3
If you cant find on maven repo that lib. You can still clone that maven project, and run maven install and it will build jar files locally for you. After that just copy them

Cannot Build JemmyFX

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?
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 jemmy-dev#openjdk.java.net alias.

JemmyFx jar location

I would like to test my JavaFX applications and i heard that JemmyFX is the right tool to do this. However, i couldn't find the Jar to download.
I tried searching online for it but i was only able to find this page which shows that the last commit on this project was over a year ago.
I have two questions:
1- is JemmyFX released and official or not yet?
2- Where can i download the Jar of JemmyFX?
Can anyone help?
JemmyFX is open-sourced, to get latest version you need to download repository and build it:
hg clone http://hg.openjdk.java.net/openjfx/8/master/tests/
cd tests/tools/Jemmy/JemmyFX
ant
To use JemmyFx you need to add next jars (they all will be in Jemmy subfolders after build):
JemmyFX.jar
JemmyAWTInput.jar
JemmyCore.jar
GlassRobot.jar
GlassImage.jar

Unable to find Lucene contrib jar in maven repository

This is probably a very basic question, but I am unable to find Lucene contrib jar in Apache's Maven repository. For e.g. I looked here, but there's only a .pom, there's no jar file, same with repositories mentioned here.
Am I missing anything obvious?
You can download the jars for maven repositories in here: http://mvnrepository.com/artifact/org.apache.lucene/lucene-core/4.4.0
For the contrib package there is a .jar only for the 3.0.2 and not 3.0.3 (don't know why):
http://mvnrepository.com/artifact/org.apache.lucene/lucene-contrib
Also, you can still download de source code and generate the .jar yourself. Should be as easy as running mvn package.
I found out the answer. Except for couple of versions mentioned by Felipe Hummel, there is not single contrib jar. Contrib contains multiple components such as analyzers, highlighters, etc. and each of them have a JAR.

How to compile SpeechMe

I am trying to compile the SpeechMe project: http://projects.developer.nokia.com/speechme/wiki so that I can use the voice recognition in another project I want to make.
I have followed all the instructions and downloaded the full sources of Sphinxbase and Pocketsphinx and used them to add all the missing files to the Sphinxbase and Pocketsphinx directories included in SpeechMe. I have compiled them all in the order the wiki says and they all returned: "***Build Complete" but it seems that they did not produce any output files?
I then tried compiling SpeechMe in Qt Creator but it gives me these three errors:
Here is the build log for all configurations: http://sdrv.ms/PxlD6r
Please help, I really don't understand why this is not working!
I'm guessing Carbide should have created those 3 files when compiling but it didn't, any ideas why and what I can do to fix it?
Files must be created inside pocketsphinx tree but they shouldn't be placed in the required location. Most likely you need to find library files and put them into the required folder manually.
Another reason might be that you are compiled a debug version of pocketsphinx while the latest project is looking for a release version of the libraries.

Resources