Maven 2.x Jfrog issues when migrating oracle JDK 1.7 to Azul open JDK 1.8 - maven-2

Migrating our project from oracle Jre 1.7 to Azul open Jre1.8 using maven 2.2.1. During the compilation we are hitting the Jfrog issues with jade-Multijar.
“jade-multijar-plugin” version 1.3.2 from Maven 2.x. And later maven 3.x there is no jade-multijar-plugin jars. Want to fix this Jfrog issue.
Error Message :
message : Cannot construct org.jfrog.maven.plugins.common.deploy.Deployment as it does not have a no-args constructor
cause-exception : com.thoughtworks.xstream.converters.reflection.ObjectAccessException
cause-message : Cannot construct org.jfrog.maven.plugins.common.deploy.Deployment as it does not have a no-args constructor
<groupId>org.jfrog.maven.plugins</groupId>
<artifactId>jade-multijar-plugin</artifactId>
maven 2.x with oracle jre 1.7 codes worked fine. When we migrate open JDK azul jre 1.8 the issue persist.

Related

Is jboss 4.2.2 GA compatible with java 11?

We have a product that is running fine with JBoss 4.2.2/java 7.
We are now moving to JDK 11. simply added java 11 in the classpath and tried starting the server.
Encountered below error
OpenJDK 64-Bit Server VM warning: Ignoring option MaxPermSize; support was removed in 8.0
-Djava.endorsed.dirs=C:\PathBuilder\GE\EMEA\vp\jboss\lib\endorsed is not supported. Endorsed standards and standalone APIs in modular form
will be supported via the concept of upgradeable modules.
removed below configurations from run.bat and started the server again
-XX:MaxPermSize=128m
"-Djava.endorsed.dirs=%JBOSS_ENDORSED_DIRS%"
now getting below error and which is
interrupting the ear deployment Caused by:
java.lang.ClassNotFoundException: No ClassLoaders found for:
org.omg.CORBA.Object
Is Java 4.2.2 compatible with JDK 11 or we need to update JBoss to 7.2 or latest versions?
can someone help with this or provide related links?
JBoss 4.2 is a very old and outdated version and it only tested with JDK 1.5 and 1.6 version. If you are upgrading your JDK to 11 then you should update the JBoss to 7.3 version which is the latest available GA release from Red Hat.
You can download the jdk files of older versions like jdk6 and then replace JAVA path in the jboss run file from "set JAVA=%JAVA_HOME%\bin\java" to
"set JAVA=C:\Users\jdk1.6.0_45\bin\java"
Of course it's better to upgrade to a higher JBoss version... But in case that's not possible, you can avoid the ClassNotFoundException for org.omg.CORBA.Object by placing rt.jar from Java 8 in your JBoss-libs folder.
With this configuration you can run older JBoss versions with Java 11.

Installing the Subversion Plugin in studio Version: 7.4.2 fails

Installing the Subversion Plugin in studio Version: 7.4.2 fails.
Tried with http://subclipse.tigris.org/update_1.6.x and other versions too.
The site http://subclipse.tigris.org appears to be abandoned, and subclipse 1.6 is an old version that is probably not compatible with the Eclipse version used for Studio 7.4.2. According to the release notes it is based on Eclipse 4.9. You should look for an updated version of subclipse that is compatible with that Eclipse version.
It seems that the current home of Subclipse is this GitHub project: https://github.com/subclipse/subclipse. Try installing from their distributions: https://github.com/subclipse/subclipse/wiki#installation

Can I use jdk 10.0.1 as my intelliJ's project sdk

I'm having trouble because I'm about to train myself to know about kotlin and when I watched some tutorials their Project SDK or JDK Versions for their IntelliJ are like 1.7 or 1.8 but mine is 10.0.1 which is a very long jump from 1.7 or 1.8.

Error installing Spring IDE 3.4.0 plugin with Eclipse Kepler: Will not be installed (Spring IDE Roo Support)

I am trying to install the plugin for Spring IDE (3.4.0) using Eclipse Marketplace for Eclipse Kepler (4.3). It is giving the error 'Will not be installed (Spring IDE Roo Support)'.
I also checked the compatibility of Spring IDE version 3.4.0 with Eclipse Kepler 4.3, and it is compatible. Any ideas on how to complete the installation?
Thank you
Prachi
It seems there is some errors on versions 3.4.0 and 4.3.0 (https://marketplace.eclipse.org/content/spring-tool-suite-sts-eclipse-kepler-43).
Yoy could try latest releases from http://spring.io/tools/eclipse, or install STS http://spring.io/tools/sts (imho STS is the best option).
I had the same problem. It seemed to get hung in the provisioning step (83%). I installed the STS and same problem... but I waited a little longer this time and it was successful. This gave me everything I was expecting in the IDE plugin
I am just trying from https://github.com/spring-projects/sts4/wiki/Installation using Neon 2. I have had to stop and start it over and over.

IntelliJ always builds for Java 1.7

I have my ANT configured to use a 1.6 JDK, my ENV variables JRE_HOME and JDK home both point to JDK6.
If I modify the JDK 6 folder name in my File explorer then my ANT build fails, cannot find JDK, so I know for sure it is using the correct JDK. However the generated clases are always compiled against java 1.7. Why i this? (My generated classes will only run on a 1.7 jre, I get version error if i run on a 1.6 JRE) All my project/module settings are pointing to 1.6 jdk.
Looks like not all of your Module/Project settings point to JDK 1.7 or you are using in-process javac option in Settings | Compiler while running IDEA under JDK 1.7.
Also check additional javac command line options, it should not contain options like -source 1.7 -target 1.7.