{"id":41283,"date":"2016-10-20T11:00:20","date_gmt":"2016-10-20T08:00:20","guid":{"rendered":"http:\/\/examples.javacodegeeks.com\/?p=41283"},"modified":"2019-03-27T14:22:44","modified_gmt":"2019-03-27T12:22:44","slug":"check-eclipse-version","status":"publish","type":"post","link":"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/ide\/eclipse\/check-eclipse-version\/","title":{"rendered":"How to check your Eclipse version"},"content":{"rendered":"<p>In this article we will see how to check the version of Eclipse you are using. We will use Eclipse Luna for this example.<\/p>\n<h2>1. Introduction<\/h2>\n<p>Eclipse is a Java-based open source platform that allows a software developer to create a customized development environment (IDE) from plug-in components built by Eclipse members. Eclipse is managed and directed by the Eclipse.org Consortium. It is one of the most used IDE for Java development. It can be used for other languages as well.<br \/>\n&nbsp;<br \/>\n&nbsp;\n<\/p>\n<h2>2. Check version<\/h2>\n<p>In this section we will see how we can check the version of Eclipse we are using. There are four&nbsp;ways to do that. We will discuss all&nbsp;these in this section.<\/p>\n<h3>2.1 About Eclipse<\/h3>\n<p>The first method is to use the <em>About Eclipse<\/em> link which could be found in the Help menu.&nbsp;Open Eclipse. Go to Help=&gt;About Eclipse. Eclipse will display a pop-up as below where you will be able to check the version of Eclipse you are using.<\/p>\n<p><figure id=\"attachment_41284\" aria-describedby=\"caption-attachment-41284\" style=\"width: 1049px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/10\/Eclipse-version.jpg\"><img decoding=\"async\" class=\"size-full wp-image-41284\" src=\"http:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/10\/Eclipse-version.jpg\" alt=\"Figure 1. Eclipse Version\" width=\"1049\" height=\"327\" srcset=\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/10\/Eclipse-version.jpg 1049w, https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/10\/Eclipse-version-300x94.jpg 300w, https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/10\/Eclipse-version-768x239.jpg 768w, https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/10\/Eclipse-version-1024x319.jpg 1024w\" sizes=\"(max-width: 1049px) 100vw, 1049px\" \/><\/a><figcaption id=\"caption-attachment-41284\" class=\"wp-caption-text\">Figure 1. Eclipse Version<\/figcaption><\/figure><div style=\"display:inline-block; margin: 15px 0;\"> <div id=\"adngin-JavaCodeGeeks_incontent_video-0\" style=\"display:inline-block;\"><\/div> <\/div><\/p>\n<p>In our case it&#8217;s 4.4.2<\/p>\n<h3>2.2&nbsp;.eclipseproduct<\/h3>\n<p>There is another way of finding the version as well. Go to the directory where you have downloaded the Eclipse. Open the file &#8216;<em>.eclipseproduc<\/em>t&#8217;. Here you will find details as below:<\/p>\n<pre class=\"brush:bash\">name=Eclipse Platform\nid=org.eclipse.platform\nversion=4.4.2\n<\/pre>\n<h3 class=\"brush:bash\">2.3 config.ini<\/h3>\n<p>The third way to check the version of the Eclipse you are using is to look for <em>config.ini&nbsp;<\/em>file in the configuration folder. The configuration folder can be found in the directory where you have downloaded the Eclipse. The <em>config.ini&nbsp;<\/em>file looks something like below<\/p>\n<pre class=\"brush:bash\">#This configuration file was written by: org.eclipse.equinox.internal.frameworkadmin.equinox.EquinoxFwConfigFileParser\n#Sun Oct 09 22:11:27 BST 2016\norg.eclipse.update.reconcile=false\neclipse.p2.profile=epp.package.jee\nosgi.instance.area.default=@user.home\/workspace\nosgi.framework=file\\:plugins\/org.eclipse.osgi_3.10.2.v20150203-1939.jar\nequinox.use.ds=true\neclipse.buildId=4.4.2.M20150204-1700\nosgi.bundles=reference\\:file\\:org.eclipse.equinox.simpleconfigurator_1.1.0.v20131217-1203.jar@1\\:start\norg.eclipse.equinox.simpleconfigurator.configUrl=file\\:org.eclipse.equinox.simpleconfigurator\/bundles.info\neclipse.product=org.eclipse.platform.ide\nosgi.splashPath=platform\\:\/base\/plugins\/org.eclipse.platform\nosgi.framework.extensions=reference\\:file\\:org.eclipse.osgi.compatibility.state_1.0.1.v20140709-1414.jar\nosgi.bundles.defaultStartLevel=4\neclipse.p2.data.area=@config.dir\/..\/p2\/\neclipse.application=org.eclipse.ui.ide.workbench<\/pre>\n<p>Look for <strong>eclipse.buildId.&nbsp;<\/strong>In my case its defined as&nbsp;eclipse.buildId=<strong>4.4.2<\/strong>.M20150204-1700[ulp id=&#8217;DBKfc8RVCRYT8tNp&#8217;]<\/p>\n<h2>2.4 Readme<\/h2>\n<p>The fourth way&nbsp;to check the version of the Eclipse is to check the <em>readme_eclipse.html<\/em> file. This file is normally in the readme folder. Open this file and on the top you will see the version of the Eclipse you are running.<\/p>\n<p><figure id=\"attachment_41313\" aria-describedby=\"caption-attachment-41313\" style=\"width: 860px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/10\/readme_eclipse.jpg\"><img decoding=\"async\" class=\"size-full wp-image-41313\" src=\"http:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/10\/readme_eclipse.jpg\" alt=\"Figure 2. Readme\" width=\"860\" height=\"454\" srcset=\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/10\/readme_eclipse.jpg 860w, https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/10\/readme_eclipse-300x158.jpg 300w, https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/10\/readme_eclipse-768x405.jpg 768w\" sizes=\"(max-width: 860px) 100vw, 860px\" \/><\/a><figcaption id=\"caption-attachment-41313\" class=\"wp-caption-text\">Figure 2. Readme<\/figcaption><\/figure><\/p>\n<h2>3. Conclusion<\/h2>\n<p>In this article we saw how to check the version of eclipse we are using. We discussed all the four&nbsp;ways we can use to do it. If you have previous versions of Eclipse you might find that some of the methods defined above are not valid, but in most cases you should be able to check the version using the <em>About Eclipse<\/em> link.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article we will see how to check the version of Eclipse you are using. We will use Eclipse Luna for this example. 1. Introduction Eclipse is a Java-based open source platform that allows a software developer to create a customized development environment (IDE) from plug-in components built by Eclipse members. Eclipse is managed &hellip;<\/p>\n","protected":false},"author":34,"featured_media":31332,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[537],"tags":[1156],"class_list":["post-41283","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-eclipse","tag-eclipse"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to check your Eclipse version - Java Code Geeks<\/title>\n<meta name=\"description\" content=\"In this article we will see how to check the version of Eclipse you are using. We will use Eclipse Luna for this example. 1. Introduction Eclipse is a\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/ide\/eclipse\/check-eclipse-version\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to check your Eclipse version - Java Code Geeks\" \/>\n<meta property=\"og:description\" content=\"In this article we will see how to check the version of Eclipse you are using. We will use Eclipse Luna for this example. 1. Introduction Eclipse is a\" \/>\n<meta property=\"og:url\" content=\"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/ide\/eclipse\/check-eclipse-version\/\" \/>\n<meta property=\"og:site_name\" content=\"Examples Java Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/javacodegeeks\" \/>\n<meta property=\"article:published_time\" content=\"2016-10-20T08:00:20+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-03-27T12:22:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/01\/eclipse-logo.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"150\" \/>\n\t<meta property=\"og:image:height\" content=\"150\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Mohammad Meraj Zia\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@javacodegeeks\" \/>\n<meta name=\"twitter:site\" content=\"@javacodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mohammad Meraj Zia\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/ide\/eclipse\/check-eclipse-version\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/ide\/eclipse\/check-eclipse-version\/\"},\"author\":{\"name\":\"Mohammad Meraj Zia\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/442b4f9b8a4aa7e12376464fc354f8ed\"},\"headline\":\"How to check your Eclipse version\",\"datePublished\":\"2016-10-20T08:00:20+00:00\",\"dateModified\":\"2019-03-27T12:22:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/ide\/eclipse\/check-eclipse-version\/\"},\"wordCount\":416,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/ide\/eclipse\/check-eclipse-version\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/01\/eclipse-logo.jpg\",\"keywords\":[\"Eclipse\"],\"articleSection\":[\"Eclipse\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/ide\/eclipse\/check-eclipse-version\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/ide\/eclipse\/check-eclipse-version\/\",\"url\":\"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/ide\/eclipse\/check-eclipse-version\/\",\"name\":\"How to check your Eclipse version - Java Code Geeks\",\"isPartOf\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/ide\/eclipse\/check-eclipse-version\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/ide\/eclipse\/check-eclipse-version\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/01\/eclipse-logo.jpg\",\"datePublished\":\"2016-10-20T08:00:20+00:00\",\"dateModified\":\"2019-03-27T12:22:44+00:00\",\"description\":\"In this article we will see how to check the version of Eclipse you are using. We will use Eclipse Luna for this example. 1. Introduction Eclipse is a\",\"breadcrumb\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/ide\/eclipse\/check-eclipse-version\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/ide\/eclipse\/check-eclipse-version\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/ide\/eclipse\/check-eclipse-version\/#primaryimage\",\"url\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/01\/eclipse-logo.jpg\",\"contentUrl\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/01\/eclipse-logo.jpg\",\"width\":150,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/ide\/eclipse\/check-eclipse-version\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/examples.javacodegeeks.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Java Development\",\"item\":\"https:\/\/examples.javacodegeeks.com\/category\/java-development\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Desktop Java\",\"item\":\"https:\/\/examples.javacodegeeks.com\/category\/java-development\/desktop-java\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"IDE\",\"item\":\"https:\/\/examples.javacodegeeks.com\/category\/java-development\/desktop-java\/ide\/\"},{\"@type\":\"ListItem\",\"position\":5,\"name\":\"Eclipse\",\"item\":\"https:\/\/examples.javacodegeeks.com\/category\/java-development\/desktop-java\/ide\/eclipse\/\"},{\"@type\":\"ListItem\",\"position\":6,\"name\":\"How to check your Eclipse version\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#website\",\"url\":\"https:\/\/examples.javacodegeeks.com\/\",\"name\":\"Java Code Geeks\",\"description\":\"Java Examples and Code Snippets\",\"publisher\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/#organization\"},\"alternateName\":\"JCG\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/examples.javacodegeeks.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#organization\",\"name\":\"Exelixis Media P.C.\",\"url\":\"https:\/\/examples.javacodegeeks.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"contentUrl\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"width\":864,\"height\":246,\"caption\":\"Exelixis Media P.C.\"},\"image\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/javacodegeeks\",\"https:\/\/x.com\/javacodegeeks\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/442b4f9b8a4aa7e12376464fc354f8ed\",\"name\":\"Mohammad Meraj Zia\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2020\/06\/IMG-20200324-WA0003-96x96.jpg\",\"contentUrl\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2020\/06\/IMG-20200324-WA0003-96x96.jpg\",\"caption\":\"Mohammad Meraj Zia\"},\"description\":\"Senior Java Developer\",\"sameAs\":[\"http:\/\/www.javacodegeeks.com\/\"],\"url\":\"https:\/\/examples.javacodegeeks.com\/author\/mohammad-zia\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to check your Eclipse version - Java Code Geeks","description":"In this article we will see how to check the version of Eclipse you are using. We will use Eclipse Luna for this example. 1. Introduction Eclipse is a","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/ide\/eclipse\/check-eclipse-version\/","og_locale":"en_US","og_type":"article","og_title":"How to check your Eclipse version - Java Code Geeks","og_description":"In this article we will see how to check the version of Eclipse you are using. We will use Eclipse Luna for this example. 1. Introduction Eclipse is a","og_url":"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/ide\/eclipse\/check-eclipse-version\/","og_site_name":"Examples Java Code Geeks","article_publisher":"https:\/\/www.facebook.com\/javacodegeeks","article_published_time":"2016-10-20T08:00:20+00:00","article_modified_time":"2019-03-27T12:22:44+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/01\/eclipse-logo.jpg","type":"image\/jpeg"}],"author":"Mohammad Meraj Zia","twitter_card":"summary_large_image","twitter_creator":"@javacodegeeks","twitter_site":"@javacodegeeks","twitter_misc":{"Written by":"Mohammad Meraj Zia","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/ide\/eclipse\/check-eclipse-version\/#article","isPartOf":{"@id":"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/ide\/eclipse\/check-eclipse-version\/"},"author":{"name":"Mohammad Meraj Zia","@id":"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/442b4f9b8a4aa7e12376464fc354f8ed"},"headline":"How to check your Eclipse version","datePublished":"2016-10-20T08:00:20+00:00","dateModified":"2019-03-27T12:22:44+00:00","mainEntityOfPage":{"@id":"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/ide\/eclipse\/check-eclipse-version\/"},"wordCount":416,"commentCount":0,"publisher":{"@id":"https:\/\/examples.javacodegeeks.com\/#organization"},"image":{"@id":"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/ide\/eclipse\/check-eclipse-version\/#primaryimage"},"thumbnailUrl":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/01\/eclipse-logo.jpg","keywords":["Eclipse"],"articleSection":["Eclipse"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/ide\/eclipse\/check-eclipse-version\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/ide\/eclipse\/check-eclipse-version\/","url":"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/ide\/eclipse\/check-eclipse-version\/","name":"How to check your Eclipse version - Java Code Geeks","isPartOf":{"@id":"https:\/\/examples.javacodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/ide\/eclipse\/check-eclipse-version\/#primaryimage"},"image":{"@id":"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/ide\/eclipse\/check-eclipse-version\/#primaryimage"},"thumbnailUrl":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/01\/eclipse-logo.jpg","datePublished":"2016-10-20T08:00:20+00:00","dateModified":"2019-03-27T12:22:44+00:00","description":"In this article we will see how to check the version of Eclipse you are using. We will use Eclipse Luna for this example. 1. Introduction Eclipse is a","breadcrumb":{"@id":"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/ide\/eclipse\/check-eclipse-version\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/ide\/eclipse\/check-eclipse-version\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/ide\/eclipse\/check-eclipse-version\/#primaryimage","url":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/01\/eclipse-logo.jpg","contentUrl":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/01\/eclipse-logo.jpg","width":150,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/ide\/eclipse\/check-eclipse-version\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/examples.javacodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"Java Development","item":"https:\/\/examples.javacodegeeks.com\/category\/java-development\/"},{"@type":"ListItem","position":3,"name":"Desktop Java","item":"https:\/\/examples.javacodegeeks.com\/category\/java-development\/desktop-java\/"},{"@type":"ListItem","position":4,"name":"IDE","item":"https:\/\/examples.javacodegeeks.com\/category\/java-development\/desktop-java\/ide\/"},{"@type":"ListItem","position":5,"name":"Eclipse","item":"https:\/\/examples.javacodegeeks.com\/category\/java-development\/desktop-java\/ide\/eclipse\/"},{"@type":"ListItem","position":6,"name":"How to check your Eclipse version"}]},{"@type":"WebSite","@id":"https:\/\/examples.javacodegeeks.com\/#website","url":"https:\/\/examples.javacodegeeks.com\/","name":"Java Code Geeks","description":"Java Examples and Code Snippets","publisher":{"@id":"https:\/\/examples.javacodegeeks.com\/#organization"},"alternateName":"JCG","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/examples.javacodegeeks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/examples.javacodegeeks.com\/#organization","name":"Exelixis Media P.C.","url":"https:\/\/examples.javacodegeeks.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/examples.javacodegeeks.com\/#\/schema\/logo\/image\/","url":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","contentUrl":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","width":864,"height":246,"caption":"Exelixis Media P.C."},"image":{"@id":"https:\/\/examples.javacodegeeks.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/javacodegeeks","https:\/\/x.com\/javacodegeeks"]},{"@type":"Person","@id":"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/442b4f9b8a4aa7e12376464fc354f8ed","name":"Mohammad Meraj Zia","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/image\/","url":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2020\/06\/IMG-20200324-WA0003-96x96.jpg","contentUrl":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2020\/06\/IMG-20200324-WA0003-96x96.jpg","caption":"Mohammad Meraj Zia"},"description":"Senior Java Developer","sameAs":["http:\/\/www.javacodegeeks.com\/"],"url":"https:\/\/examples.javacodegeeks.com\/author\/mohammad-zia\/"}]}},"_links":{"self":[{"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/posts\/41283","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/users\/34"}],"replies":[{"embeddable":true,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/comments?post=41283"}],"version-history":[{"count":0,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/posts\/41283\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/media\/31332"}],"wp:attachment":[{"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/media?parent=41283"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/categories?post=41283"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/tags?post=41283"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}