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

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.

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.

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

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.

Does jdk 1.7 and 1.8 support mule 3.4

Does mule 3.4 runs with jdk 1.7 & 1.8? Is there any document mentioning about software requirements for running mule 3.4
Actually the question in the title should be the other way around: Does Mule 3.4 supports JDK 1.7 and 1.8?
The answer is that Mule 3.4 does support JDK 1.7 (AKA Java 7) but does not support JDK 1.8 (AKA Java 8). The documentation for 3.4 is archived and it is still available at https://docs.archive.mulesoft.com/mule-user-guide/v/3.4/hardware-and-software-requirements
Note that Mule 3.7.0 is the first release to support Java 8.
Mule 3.4 is a very old release. I would recommend to migrate to a modern, recently released release.

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.

bzr-eclipse 1.4 needs xmloutput >= 0.9.2

I'm trying to install Eclipse Kepler (4.3) IDE with Bazaar version control system integration on a CentOS 6.5 machine. Everything seems perfect, until I restart the IDE and want to use bazaar. It asks for xmloutput >= 0.9.2 but according to this page the latest version available is xmloutput 0.8.8
I have tried to install bzr-eclipse 1.3 or 1.2 but all the links in Eclipse are just for the latest version.
Does anybody know how to install a previous version of bzr-eclipse or how to use a correct version of xmloutput?
This problem seems to be very close to this question (resolved by upgrading to a newer version of Bazaar).