{"id":51317,"date":"2016-01-25T16:00:29","date_gmt":"2016-01-25T14:00:29","guid":{"rendered":"http:\/\/www.javacodegeeks.com\/?p=51317"},"modified":"2016-01-24T12:39:32","modified_gmt":"2016-01-24T10:39:32","slug":"adding-jar-dependencies-eclipse-plugin-maven-tycho-build","status":"publish","type":"post","link":"https:\/\/www.javacodegeeks.com\/2016\/01\/adding-jar-dependencies-eclipse-plugin-maven-tycho-build.html","title":{"rendered":"Adding JAR Dependencies to an Eclipse Plugin Maven Tycho Build"},"content":{"rendered":"<p>Something that is constantly bothering me when developing the OPP project is the use of hard-coded Java library dependencies. I manually downloaded the <code>jar<\/code>s for the libraries I use, copied them to a directory in the plugin that required them, and the added them to the <code>MANIFEST.MF<\/code> file.<\/p>\n<p>You are probably asking why am I doing this. Well, Eclipse plugins (or more correctly OSGi projects) are built in Maven using a plugin called \u201cTycho\u201d. This build process is different from the standard java Maven build process, specifically in how it handles dependencies.<\/p>\n<p>OSGi dependencies are defined in a <code>MANIFEST.MF<\/code> file and not defined in <code>POM<\/code> of the project. When Maven is executed, it looks at the <code>MANIFEST.MF<\/code> file, extracts the dependencies, and then tries to download them from one of the repositories defined in the <code>POM<\/code>, which, as expected, are defined differently than Maven repositories.<\/p>\n<p>We love standards. That is why we need at least two of them :-(.<\/p>\n<p>So back to my problem: I have a number of simple Java dependencies that I am using in my projects. So searching the net I found the <a href=\"http:\/\/felix.apache.org\/documentation\/subprojects\/apache-felix-maven-bundle-plugin-bnd.html\">Apache Felix Maven Bundle Plugin<\/a> (BND). After trying and trying again to get its configuration right, I gave up. Maybe you need a PhD to configure this, so I\u2019ll come back again in a couple of months (hopefully :-)).<div style=\"display:inline-block; margin: 15px 0;\"> <div id=\"adngin-JavaCodeGeeks_incontent_video-0\" style=\"display:inline-block;\"><\/div> <\/div><\/p>\n<p>But hey, I\u2019m a developer, and I should scratch my own itch, so why not develop a Maven plugin that does what I want? Yep, good idea! But after two weeks of work (by work I mean the only half hour available to me each day to work on this, excluding weekends) I found myself with a simple Maven plugin that is able to copy a file from here to there, but the learning curve is a steep.<\/p>\n<p>And then I reinvented the wheel, because the solution was already posted in <a href=\"http:\/\/stackoverflow.com\/questions\/22311165\/handling-non-osgi-dependencies-when-integrating-maven-tycho-and-eclipse\/22318431#22318431\">StackOverflow<\/a> and I had read it a while ago, but disregarded it. Last week after learning some more Maven (because I was writing a plugin), I understood that I could create a new project (standard Java maven project) where the dependencies are downloaded and then copy the dependencies to my Eclipse plugin project. After a couple of minutes, Voila! It Works! You can find the results in the <a href=\"https:\/\/github.com\/vainolo\/Object-Process-Programming\">OPP repository<\/a>. The Java only project is <code>com.vainolo.phd.opp.java-dependencies<\/code> which is required by the Maven module <code>com.vainolo.phd.opp.utilities<\/code>. Check how the <code>POM<\/code> files are written to see how this works. I also added the dependencies project as a child project of <code>com.vainolo.phd.opp.releng<\/code> so it gets built as part of the project.<\/p>\n<p>There is also a simpler way to do this without another project, as described in <a href=\"http:\/\/stackoverflow.com\/questions\/28542595\/how-to-embed-a-library-jar-in-an-osgi-bundle-using-tycho\/30872071#30872071\">this StackOverflow answer<\/a>. Here the <code>maven-dependency-plugin<\/code> plugin is invoked directly in one of the initial phases of the build (i.e. <code>validate<\/code>), using plugin specific configuration to select the dependencies. Tried this but while it works for the direct dependency, it didn\u2019t download transitive dependencies. This is probably a configuration things but at this stage I am not going to invest more time in this.<\/p>\n<p>Maybe next year.<\/p>\n<p>Happy coding!<\/p>\n<div class=\"attribution\">\n<table>\n<tbody>\n<tr>\n<td><span class=\"reference\">Reference: <\/span><\/td>\n<td><a href=\"http:\/\/www.vainolo.com\/2016\/01\/23\/adding-jar-dependencies-to-an-eclipse-plugin-tycho-build\/\">Adding JAR Dependencies to an Eclipse Plugin Maven Tycho Build<\/a> from our <a href=\"http:\/\/www.javacodegeeks.com\/join-us\/jcg\/\">JCG partner<\/a> Arieh Bibliowicz at the <a href=\"http:\/\/www.vainolo.com\/\">Vainolo&#8217;s Blog<\/a> blog.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Something that is constantly bothering me when developing the OPP project is the use of hard-coded Java library dependencies. I manually downloaded the jars for the libraries I use, copied them to a directory in the plugin that required them, and the added them to the MANIFEST.MF file. You are probably asking why am I &hellip;<\/p>\n","protected":false},"author":615,"featured_media":73,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8],"tags":[68,29],"class_list":["post-51317","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-enterprise-java","tag-apache-maven","tag-eclipse"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Adding JAR Dependencies to an Eclipse Plugin Maven Tycho Build - Java Code Geeks<\/title>\n<meta name=\"description\" content=\"Something that is constantly bothering me when developing the OPP project is the use of hard-coded Java library dependencies. I manually downloaded the\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.javacodegeeks.com\/2016\/01\/adding-jar-dependencies-eclipse-plugin-maven-tycho-build.html\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Adding JAR Dependencies to an Eclipse Plugin Maven Tycho Build - Java Code Geeks\" \/>\n<meta property=\"og:description\" content=\"Something that is constantly bothering me when developing the OPP project is the use of hard-coded Java library dependencies. I manually downloaded the\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.javacodegeeks.com\/2016\/01\/adding-jar-dependencies-eclipse-plugin-maven-tycho-build.html\" \/>\n<meta property=\"og:site_name\" content=\"Java Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/javacodegeeks\" \/>\n<meta property=\"article:published_time\" content=\"2016-01-25T14:00:29+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/apache-maven-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=\"Arieh Bibliowicz\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/vainolo\" \/>\n<meta name=\"twitter:site\" content=\"@javacodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Arieh Bibliowicz\" \/>\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:\\\/\\\/www.javacodegeeks.com\\\/2016\\\/01\\\/adding-jar-dependencies-eclipse-plugin-maven-tycho-build.html#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2016\\\/01\\\/adding-jar-dependencies-eclipse-plugin-maven-tycho-build.html\"},\"author\":{\"name\":\"Arieh Bibliowicz\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#\\\/schema\\\/person\\\/d08701381145ccf30392355f1090c757\"},\"headline\":\"Adding JAR Dependencies to an Eclipse Plugin Maven Tycho Build\",\"datePublished\":\"2016-01-25T14:00:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2016\\\/01\\\/adding-jar-dependencies-eclipse-plugin-maven-tycho-build.html\"},\"wordCount\":543,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2016\\\/01\\\/adding-jar-dependencies-eclipse-plugin-maven-tycho-build.html#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/apache-maven-logo.jpg\",\"keywords\":[\"Apache Maven\",\"Eclipse\"],\"articleSection\":[\"Enterprise Java\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.javacodegeeks.com\\\/2016\\\/01\\\/adding-jar-dependencies-eclipse-plugin-maven-tycho-build.html#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2016\\\/01\\\/adding-jar-dependencies-eclipse-plugin-maven-tycho-build.html\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2016\\\/01\\\/adding-jar-dependencies-eclipse-plugin-maven-tycho-build.html\",\"name\":\"Adding JAR Dependencies to an Eclipse Plugin Maven Tycho Build - Java Code Geeks\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2016\\\/01\\\/adding-jar-dependencies-eclipse-plugin-maven-tycho-build.html#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2016\\\/01\\\/adding-jar-dependencies-eclipse-plugin-maven-tycho-build.html#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/apache-maven-logo.jpg\",\"datePublished\":\"2016-01-25T14:00:29+00:00\",\"description\":\"Something that is constantly bothering me when developing the OPP project is the use of hard-coded Java library dependencies. I manually downloaded the\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2016\\\/01\\\/adding-jar-dependencies-eclipse-plugin-maven-tycho-build.html#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.javacodegeeks.com\\\/2016\\\/01\\\/adding-jar-dependencies-eclipse-plugin-maven-tycho-build.html\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2016\\\/01\\\/adding-jar-dependencies-eclipse-plugin-maven-tycho-build.html#primaryimage\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/apache-maven-logo.jpg\",\"contentUrl\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/apache-maven-logo.jpg\",\"width\":150,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2016\\\/01\\\/adding-jar-dependencies-eclipse-plugin-maven-tycho-build.html#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.javacodegeeks.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Java\",\"item\":\"https:\\\/\\\/www.javacodegeeks.com\\\/category\\\/java\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Enterprise Java\",\"item\":\"https:\\\/\\\/www.javacodegeeks.com\\\/category\\\/java\\\/enterprise-java\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Adding JAR Dependencies to an Eclipse Plugin Maven Tycho Build\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#website\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/\",\"name\":\"Java Code Geeks\",\"description\":\"Java Developers Resource Center\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#organization\"},\"alternateName\":\"JCG\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.javacodegeeks.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#organization\",\"name\":\"Exelixis Media P.C.\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/exelixis-logo.png\",\"contentUrl\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/exelixis-logo.png\",\"width\":864,\"height\":246,\"caption\":\"Exelixis Media P.C.\"},\"image\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/javacodegeeks\",\"https:\\\/\\\/x.com\\\/javacodegeeks\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#\\\/schema\\\/person\\\/d08701381145ccf30392355f1090c757\",\"name\":\"Arieh Bibliowicz\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e797704c245e29de3407affdab84f97eed02c8d1253d6ace5f1808426cd515e0?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e797704c245e29de3407affdab84f97eed02c8d1253d6ace5f1808426cd515e0?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e797704c245e29de3407affdab84f97eed02c8d1253d6ace5f1808426cd515e0?s=96&d=mm&r=g\",\"caption\":\"Arieh Bibliowicz\"},\"description\":\"Arieh is a longtime programmer with more than 10 years of experience in enterprise grade software projects. He has worked as server-size programmer, team leader and system architect in a mission-critical high-availability systems. Arieh is currently a Program Manager (PM) in the Microsoft ILDC R&amp;D center for the Azure Active Directory Application Proxy, and also a PhD student at the Technion where he is developing a Visual Programming Language based on the graphical language of the Object-Process Methodology, using Java and the Eclipse platform.\",\"sameAs\":[\"http:\\\/\\\/www.vainolo.com\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/pub\\\/arieh-bibliowicz\\\/3\\\/b11\\\/a57\",\"https:\\\/\\\/x.com\\\/https:\\\/\\\/twitter.com\\\/vainolo\"],\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/author\\\/arieh-bibliowicz\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Adding JAR Dependencies to an Eclipse Plugin Maven Tycho Build - Java Code Geeks","description":"Something that is constantly bothering me when developing the OPP project is the use of hard-coded Java library dependencies. I manually downloaded the","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:\/\/www.javacodegeeks.com\/2016\/01\/adding-jar-dependencies-eclipse-plugin-maven-tycho-build.html","og_locale":"en_US","og_type":"article","og_title":"Adding JAR Dependencies to an Eclipse Plugin Maven Tycho Build - Java Code Geeks","og_description":"Something that is constantly bothering me when developing the OPP project is the use of hard-coded Java library dependencies. I manually downloaded the","og_url":"https:\/\/www.javacodegeeks.com\/2016\/01\/adding-jar-dependencies-eclipse-plugin-maven-tycho-build.html","og_site_name":"Java Code Geeks","article_publisher":"https:\/\/www.facebook.com\/javacodegeeks","article_published_time":"2016-01-25T14:00:29+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/apache-maven-logo.jpg","type":"image\/jpeg"}],"author":"Arieh Bibliowicz","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/vainolo","twitter_site":"@javacodegeeks","twitter_misc":{"Written by":"Arieh Bibliowicz","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.javacodegeeks.com\/2016\/01\/adding-jar-dependencies-eclipse-plugin-maven-tycho-build.html#article","isPartOf":{"@id":"https:\/\/www.javacodegeeks.com\/2016\/01\/adding-jar-dependencies-eclipse-plugin-maven-tycho-build.html"},"author":{"name":"Arieh Bibliowicz","@id":"https:\/\/www.javacodegeeks.com\/#\/schema\/person\/d08701381145ccf30392355f1090c757"},"headline":"Adding JAR Dependencies to an Eclipse Plugin Maven Tycho Build","datePublished":"2016-01-25T14:00:29+00:00","mainEntityOfPage":{"@id":"https:\/\/www.javacodegeeks.com\/2016\/01\/adding-jar-dependencies-eclipse-plugin-maven-tycho-build.html"},"wordCount":543,"commentCount":0,"publisher":{"@id":"https:\/\/www.javacodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.javacodegeeks.com\/2016\/01\/adding-jar-dependencies-eclipse-plugin-maven-tycho-build.html#primaryimage"},"thumbnailUrl":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/apache-maven-logo.jpg","keywords":["Apache Maven","Eclipse"],"articleSection":["Enterprise Java"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.javacodegeeks.com\/2016\/01\/adding-jar-dependencies-eclipse-plugin-maven-tycho-build.html#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.javacodegeeks.com\/2016\/01\/adding-jar-dependencies-eclipse-plugin-maven-tycho-build.html","url":"https:\/\/www.javacodegeeks.com\/2016\/01\/adding-jar-dependencies-eclipse-plugin-maven-tycho-build.html","name":"Adding JAR Dependencies to an Eclipse Plugin Maven Tycho Build - Java Code Geeks","isPartOf":{"@id":"https:\/\/www.javacodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.javacodegeeks.com\/2016\/01\/adding-jar-dependencies-eclipse-plugin-maven-tycho-build.html#primaryimage"},"image":{"@id":"https:\/\/www.javacodegeeks.com\/2016\/01\/adding-jar-dependencies-eclipse-plugin-maven-tycho-build.html#primaryimage"},"thumbnailUrl":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/apache-maven-logo.jpg","datePublished":"2016-01-25T14:00:29+00:00","description":"Something that is constantly bothering me when developing the OPP project is the use of hard-coded Java library dependencies. I manually downloaded the","breadcrumb":{"@id":"https:\/\/www.javacodegeeks.com\/2016\/01\/adding-jar-dependencies-eclipse-plugin-maven-tycho-build.html#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.javacodegeeks.com\/2016\/01\/adding-jar-dependencies-eclipse-plugin-maven-tycho-build.html"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.javacodegeeks.com\/2016\/01\/adding-jar-dependencies-eclipse-plugin-maven-tycho-build.html#primaryimage","url":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/apache-maven-logo.jpg","contentUrl":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/apache-maven-logo.jpg","width":150,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/www.javacodegeeks.com\/2016\/01\/adding-jar-dependencies-eclipse-plugin-maven-tycho-build.html#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.javacodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"Java","item":"https:\/\/www.javacodegeeks.com\/category\/java"},{"@type":"ListItem","position":3,"name":"Enterprise Java","item":"https:\/\/www.javacodegeeks.com\/category\/java\/enterprise-java"},{"@type":"ListItem","position":4,"name":"Adding JAR Dependencies to an Eclipse Plugin Maven Tycho Build"}]},{"@type":"WebSite","@id":"https:\/\/www.javacodegeeks.com\/#website","url":"https:\/\/www.javacodegeeks.com\/","name":"Java Code Geeks","description":"Java Developers Resource Center","publisher":{"@id":"https:\/\/www.javacodegeeks.com\/#organization"},"alternateName":"JCG","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.javacodegeeks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.javacodegeeks.com\/#organization","name":"Exelixis Media P.C.","url":"https:\/\/www.javacodegeeks.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.javacodegeeks.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","contentUrl":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","width":864,"height":246,"caption":"Exelixis Media P.C."},"image":{"@id":"https:\/\/www.javacodegeeks.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/javacodegeeks","https:\/\/x.com\/javacodegeeks"]},{"@type":"Person","@id":"https:\/\/www.javacodegeeks.com\/#\/schema\/person\/d08701381145ccf30392355f1090c757","name":"Arieh Bibliowicz","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/e797704c245e29de3407affdab84f97eed02c8d1253d6ace5f1808426cd515e0?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/e797704c245e29de3407affdab84f97eed02c8d1253d6ace5f1808426cd515e0?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e797704c245e29de3407affdab84f97eed02c8d1253d6ace5f1808426cd515e0?s=96&d=mm&r=g","caption":"Arieh Bibliowicz"},"description":"Arieh is a longtime programmer with more than 10 years of experience in enterprise grade software projects. He has worked as server-size programmer, team leader and system architect in a mission-critical high-availability systems. Arieh is currently a Program Manager (PM) in the Microsoft ILDC R&amp;D center for the Azure Active Directory Application Proxy, and also a PhD student at the Technion where he is developing a Visual Programming Language based on the graphical language of the Object-Process Methodology, using Java and the Eclipse platform.","sameAs":["http:\/\/www.vainolo.com\/","https:\/\/www.linkedin.com\/pub\/arieh-bibliowicz\/3\/b11\/a57","https:\/\/x.com\/https:\/\/twitter.com\/vainolo"],"url":"https:\/\/www.javacodegeeks.com\/author\/arieh-bibliowicz"}]}},"_links":{"self":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/posts\/51317","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/users\/615"}],"replies":[{"embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/comments?post=51317"}],"version-history":[{"count":0,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/posts\/51317\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/media\/73"}],"wp:attachment":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/media?parent=51317"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/categories?post=51317"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/tags?post=51317"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}