Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Lyo/prereqs"

< Lyo
(Created page with "== Prerequisites for Building Lyo Projects == * [http://eclipse.org/downloads Eclipse 3.6 or higher IDE] * [http://eclipse.org/egit/download/ EGit] team provider for git or [h...")
 
m
Line 1: Line 1:
 
== Prerequisites for Building Lyo Projects ==
 
== Prerequisites for Building Lyo Projects ==
 
* [http://eclipse.org/downloads Eclipse 3.6 or higher IDE]
 
* [http://eclipse.org/downloads Eclipse 3.6 or higher IDE]
* [http://eclipse.org/egit/download/ EGit] team provider for git or [http://git-scm.com/download git command line package].
+
* [http://eclipse.org/egit/download/ EGit] team provider for Git or the [http://git-scm.com/download Git command line package].
 
* [http://eclipse.org/m2e/ m2eclipse] for Maven support in the Eclipse IDE
 
* [http://eclipse.org/m2e/ m2eclipse] for Maven support in the Eclipse IDE
* OSLC4J requires a Java 1.6 or newer compiler and runtime.  The Eclipse project settings have been set appropriately.  If you are building outside of Eclipse, please use Java 1.6.
+
* A Java 1.6 or newer compiler and runtime.  The Eclipse project settings have been set appropriately.  If you are building outside of Eclipse, please use Java 1.6.
  
 
<blockquote>'''IBM JVM/JRE Users:'''  There is an issue with older m2eclipse versions and the the IBM JRE.  If you have see the error '''java.lang.NoClassDefFoundError: org.slf4j.impl.StaticLoggerBinder''' when running a Maven install, you either need to upgrade m2eclipse or copy a newer slf4j api jar into your JRE directory to work around the issue until it is fixed:
 
<blockquote>'''IBM JVM/JRE Users:'''  There is an issue with older m2eclipse versions and the the IBM JRE.  If you have see the error '''java.lang.NoClassDefFoundError: org.slf4j.impl.StaticLoggerBinder''' when running a Maven install, you either need to upgrade m2eclipse or copy a newer slf4j api jar into your JRE directory to work around the issue until it is fixed:

Revision as of 12:52, 13 January 2015

Prerequisites for Building Lyo Projects

IBM JVM/JRE Users: There is an issue with older m2eclipse versions and the the IBM JRE. If you have see the error java.lang.NoClassDefFoundError: org.slf4j.impl.StaticLoggerBinder when running a Maven install, you either need to upgrade m2eclipse or copy a newer slf4j api jar into your JRE directory to work around the issue until it is fixed:
  • Download slf4j-1.6.2.zip and extract the zip.
  • Copy slf4j-api-1.6.2.jar from the slf4j distribution to the JAVA_HOME\jre\lib\ext directory
See https://bugs.eclipse.org/bugs/show_bug.cgi?id=338252 if you are interested in the details

Back to the top