{"id":12791,"date":"2022-10-26T05:00:47","date_gmt":"2022-10-26T09:00:47","guid":{"rendered":"http:\/\/local.brightwhiz\/?p=12791"},"modified":"2024-02-20T17:13:50","modified_gmt":"2024-02-20T14:13:50","slug":"how-to-install-maven-on-ubuntu-22-04","status":"publish","type":"post","link":"http:\/\/local.brightwhiz\/how-to-install-maven-on-ubuntu-22-04\/","title":{"rendered":"How to Install Maven on Ubuntu 22.04"},"content":{"rendered":"\n

As we show you how to install Maven on Ubuntu 22.04, Apache Maven is a software project management and comprehension tool designed to can manage a project’s build, reporting and documentation from a central piece of information.<\/p>\n\n\n\n

Maven aims to make the build process easy, provide a uniform build system, provide quality project information, and encourage better development practices. You can get full details here now or read it later.<\/p>\n\n\n\n

Meanwhile we can proceed with the installation of Maven on Ubuntu.<\/p>\n\n\n\n

Prerequisites<\/h2>\n\n\n\n

Apache Maven can be installed and configured on any system with Java installed. The latest Maven 3.3+ version requires JDK 1.7 or newer versions. However, it will still allow you to build against JDK 1.3 and other JDK versions by using Toolchains. About 10MB is required for the Maven installation itself with additional space for your local Maven repository which on average is at least 500MB.<\/p>\n\n\n\n

Do This to Install Maven on Ubuntu 22.04<\/h2>\n\n\n\n

First update the apt package<\/a> database by running this command:<\/p>\n\n\n\n

$ sudo apt update<\/code><\/pre>\n\n\n\n

Run the following command to install JDK 11 which is the default on Ubuntu 22.04:<\/p>\n\n\n\n

$ sudo apt install default-jdk<\/code><\/pre>\n\n\n\n

Once the Java JDK is installed, you can confirm the installed Java version by running:<\/p>\n\n\n\n

$ java -version<\/code><\/pre>\n\n\n\n
Output:\n\nopenjdk 11.0.7 2020-04-14\nOpenJDK Runtime Environment (build 11.0.7+10-post-Ubuntu-3ubuntu1)\nOpenJDK 64-Bit Server VM (build 11.0.7+10-post-Ubuntu-3ubuntu1, mixed mode, sharing)<\/code><\/pre>\n\n\n\n

If you want to install a different version, usually the latest Java JDK on your system you can follow this tutorial on how to install OpenJDK 17 on Ubuntu<\/a>.<\/p>\n\n\n\n

Method 1: Installing Maven Using Apt<\/h2>\n\n\n\n

The easiest way to install Maven on Ubuntu is by using the Apt package manager. Run the following command in the terminal:<\/p>\n\n\n\n

$ sudo apt install maven<\/code><\/pre>\n\n\n\n

Once completed, you can confirm your installation and version by running this command:<\/p>\n\n\n\n

$ mvn -v<\/code><\/pre>\n\n\n\n

Method 2: Installing Latest Maven on Ubuntu From Source Code<\/h2>\n\n\n\n

The problem with installing Maven using Method 1 above is that you do not usually get the latest version. To install the latest Maven on Ubuntu systems, you can follow the steps outlined below.<\/p>\n\n\n\n

1. Download Apache Maven<\/a> from its official website using the following command. We will be downloading Apache Maven 3.8.6 in our examples.<\/p>\n\n\n\n

$ wget https:\/\/dlcdn.apache.org\/maven\/maven-3\/3.8.6\/binaries\/apache-maven-3.8.6-bin.tar.gz<\/code><\/pre>\n\n\n\n

2. Extract the downloaded Maven archive file using the following command below. (We will extract it into the \/opt<\/code> directory):<\/p>\n\n\n\n

$ sudo tar xzf apache-maven-3.8.5-bin.tar.gz -C \/opt<\/code><\/pre>\n\n\n\n

Optional<\/strong>: Create a symbolic link \/opt\/maven<\/code> to that directory.<\/p>\n\n\n\n

$ sudo ln -s \/opt\/apache-maven-3.8.5 \/opt\/maven <\/code><\/pre>\n\n\n\n

3. Set the environments variables by creating new file using the commands below.<\/p>\n\n\n\n

$ \/etc\/profile.d\/maven.sh<\/code><\/pre>\n\n\n\n

Add these directives below to the file:<\/p>\n\n\n\n

export JAVA_HOME=\/usr\/lib\/jvm\/default-java\nexport M2_HOME=\/opt\/maven\nexport MAVEN_HOME=\/opt\/maven\nexport PATH=${M2_HOME}\/bin:${PATH}<\/code><\/pre>\n\n\n\n

Save the file and close it.<\/p>\n\n\n\n

4. Load the environment variables in the current shell using the command below. We do this so that at the next system reboot, the environment will automatically loaded.<\/p>\n\n\n\n

$ source \/etc\/profile.d\/maven.sh<\/code><\/pre>\n\n\n\n

If you reached this stage without any errors then you have successfully installed and configured Apache Maven on your Ubuntu system.<\/p>\n\n\n\n

Check and confirm the installed Maven version using this command:<\/p>\n\n\n\n

$ mvn -version<\/code><\/pre>\n\n\n\n

5. Clean up the system by removing the downloaded archive file using this command:<\/p>\n\n\n\n

$ rm -f apache-maven-3.8.6-bin.tar.gz<\/code><\/pre>\n\n\n\n

Uninstall Apache Maven from Ubuntu<\/h2>\n\n\n\n

Like any software on your system, if it is no longer needed you can always remove it from the system. These steps will show you how to do it.<\/p>\n\n\n\n

If you installed maven using the Apt package manager you can run the following command to uninstall it.<\/p>\n\n\n\n

$ sudo apt remove --purge maven<\/code><\/pre>\n\n\n\n

If you installed maven from the downloaded source code, you can use the following commands to remove it.<\/p>\n\n\n\n

$ sudo unlink \/opt\/maven \n$ sudo rm -rf \/opt\/apache-maven-3.8.5 \n$ sudo rm -f \/etc\/profile.d\/maven.sh<\/code><\/pre>\n\n\n\n

In Closing<\/h2>\n\n\n\n

This tutorial has shown you how to install Maven on Ubuntu 22.04 using the Apt package manager as well as from the latest source downloads from the official website.<\/p>\n","protected":false},"excerpt":{"rendered":"

As we show you how to install Maven on Ubuntu 22.04, Apache Maven is a software project management and comprehension tool designed to can manage a project’s build, reporting and…<\/p>\n","protected":false},"author":1,"featured_media":12792,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2,23,9,16,18],"tags":[183,327,350,354,424,433,449,544,591,598],"yoast_head":"\nHow to Install Maven on Ubuntu 22.04<\/title>\n<meta name=\"description\" content=\"With this tutorial we will see how to install Maven on Ubuntu 22.04 and Debian-bases Linus distros manually and using apt package manager\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/local.brightwhiz\/how-to-install-maven-on-ubuntu-22-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Maven on Ubuntu 22.04\" \/>\n<meta property=\"og:description\" content=\"With this tutorial we will see how to install Maven on Ubuntu 22.04 and Debian-bases Linus distros manually and using apt package manager\" \/>\n<meta property=\"og:url\" content=\"http:\/\/local.brightwhiz\/how-to-install-maven-on-ubuntu-22-04\/\" \/>\n<meta property=\"og:site_name\" content=\"Brightwhiz.com\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/brightwhiz\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-10-26T09:00:47+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-20T14:13:50+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/10\/Install-Maven-on-Ubuntu-22.04.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"680\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Michael Bright\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@brightwhizmag\" \/>\n<meta name=\"twitter:site\" content=\"@brightwhizmag\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Michael Bright\" \/>\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\":\"http:\/\/local.brightwhiz\/how-to-install-maven-on-ubuntu-22-04\/#article\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-maven-on-ubuntu-22-04\/\"},\"author\":{\"name\":\"Michael Bright\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\"},\"headline\":\"How to Install Maven on Ubuntu 22.04\",\"datePublished\":\"2022-10-26T09:00:47+00:00\",\"dateModified\":\"2024-02-20T14:13:50+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-maven-on-ubuntu-22-04\/\"},\"wordCount\":548,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-maven-on-ubuntu-22-04\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/10\/Install-Maven-on-Ubuntu-22.04.jpg\",\"keywords\":[\"Debian\",\"Java\",\"Libraries\",\"Linux\",\"Open Source\",\"Optimization\",\"Performance\",\"Software development\",\"Tools\",\"Ubuntu\"],\"articleSection\":[\"Articles\",\"Guides\",\"How To\",\"Technology\",\"Tools\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"http:\/\/local.brightwhiz\/how-to-install-maven-on-ubuntu-22-04\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-maven-on-ubuntu-22-04\/\",\"url\":\"http:\/\/local.brightwhiz\/how-to-install-maven-on-ubuntu-22-04\/\",\"name\":\"How to Install Maven on Ubuntu 22.04\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-maven-on-ubuntu-22-04\/#primaryimage\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-maven-on-ubuntu-22-04\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/10\/Install-Maven-on-Ubuntu-22.04.jpg\",\"datePublished\":\"2022-10-26T09:00:47+00:00\",\"dateModified\":\"2024-02-20T14:13:50+00:00\",\"description\":\"With this tutorial we will see how to install Maven on Ubuntu 22.04 and Debian-bases Linus distros manually and using apt package manager\",\"breadcrumb\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-maven-on-ubuntu-22-04\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/local.brightwhiz\/how-to-install-maven-on-ubuntu-22-04\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-maven-on-ubuntu-22-04\/#primaryimage\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/10\/Install-Maven-on-Ubuntu-22.04.jpg\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/10\/Install-Maven-on-Ubuntu-22.04.jpg\",\"width\":1280,\"height\":680,\"caption\":\"Install Maven on Ubuntu 22.04\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-maven-on-ubuntu-22-04\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/local.brightwhiz\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Maven on Ubuntu 22.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/local.brightwhiz\/#website\",\"url\":\"http:\/\/local.brightwhiz\/\",\"name\":\"Brightwhiz.com\",\"description\":\"Best Tech guides, Tutorials, and News\",\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/local.brightwhiz\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/local.brightwhiz\/#organization\",\"name\":\"Brightwhiz\",\"url\":\"http:\/\/local.brightwhiz\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png\",\"width\":706,\"height\":135,\"caption\":\"Brightwhiz\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/brightwhiz\/\",\"https:\/\/twitter.com\/brightwhizmag\",\"https:\/\/instagram.com\/bright_whiz\/\",\"https:\/\/www.pinterest.com\/sobbayi\/\",\"https:\/\/www.youtube.com\/channel\/UC6sCdP_d_RiTIM7ErFT-PSQ\"]},{\"@type\":\"Person\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\",\"name\":\"Michael Bright\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/image\/\",\"url\":\"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g\",\"contentUrl\":\"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g\",\"caption\":\"Michael Bright\"},\"sameAs\":[\"https:\/\/sobbayi.com\"],\"url\":\"http:\/\/local.brightwhiz\/author\/sobbayiadmin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Maven on Ubuntu 22.04","description":"With this tutorial we will see how to install Maven on Ubuntu 22.04 and Debian-bases Linus distros manually and using apt package manager","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":"http:\/\/local.brightwhiz\/how-to-install-maven-on-ubuntu-22-04\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Maven on Ubuntu 22.04","og_description":"With this tutorial we will see how to install Maven on Ubuntu 22.04 and Debian-bases Linus distros manually and using apt package manager","og_url":"http:\/\/local.brightwhiz\/how-to-install-maven-on-ubuntu-22-04\/","og_site_name":"Brightwhiz.com","article_publisher":"https:\/\/www.facebook.com\/brightwhiz\/","article_published_time":"2022-10-26T09:00:47+00:00","article_modified_time":"2024-02-20T14:13:50+00:00","og_image":[{"width":1280,"height":680,"url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/10\/Install-Maven-on-Ubuntu-22.04.jpg","type":"image\/jpeg"}],"author":"Michael Bright","twitter_card":"summary_large_image","twitter_creator":"@brightwhizmag","twitter_site":"@brightwhizmag","twitter_misc":{"Written by":"Michael Bright","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/local.brightwhiz\/how-to-install-maven-on-ubuntu-22-04\/#article","isPartOf":{"@id":"http:\/\/local.brightwhiz\/how-to-install-maven-on-ubuntu-22-04\/"},"author":{"name":"Michael Bright","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32"},"headline":"How to Install Maven on Ubuntu 22.04","datePublished":"2022-10-26T09:00:47+00:00","dateModified":"2024-02-20T14:13:50+00:00","mainEntityOfPage":{"@id":"http:\/\/local.brightwhiz\/how-to-install-maven-on-ubuntu-22-04\/"},"wordCount":548,"commentCount":0,"publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"image":{"@id":"http:\/\/local.brightwhiz\/how-to-install-maven-on-ubuntu-22-04\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/10\/Install-Maven-on-Ubuntu-22.04.jpg","keywords":["Debian","Java","Libraries","Linux","Open Source","Optimization","Performance","Software development","Tools","Ubuntu"],"articleSection":["Articles","Guides","How To","Technology","Tools"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["http:\/\/local.brightwhiz\/how-to-install-maven-on-ubuntu-22-04\/#respond"]}]},{"@type":"WebPage","@id":"http:\/\/local.brightwhiz\/how-to-install-maven-on-ubuntu-22-04\/","url":"http:\/\/local.brightwhiz\/how-to-install-maven-on-ubuntu-22-04\/","name":"How to Install Maven on Ubuntu 22.04","isPartOf":{"@id":"http:\/\/local.brightwhiz\/#website"},"primaryImageOfPage":{"@id":"http:\/\/local.brightwhiz\/how-to-install-maven-on-ubuntu-22-04\/#primaryimage"},"image":{"@id":"http:\/\/local.brightwhiz\/how-to-install-maven-on-ubuntu-22-04\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/10\/Install-Maven-on-Ubuntu-22.04.jpg","datePublished":"2022-10-26T09:00:47+00:00","dateModified":"2024-02-20T14:13:50+00:00","description":"With this tutorial we will see how to install Maven on Ubuntu 22.04 and Debian-bases Linus distros manually and using apt package manager","breadcrumb":{"@id":"http:\/\/local.brightwhiz\/how-to-install-maven-on-ubuntu-22-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/local.brightwhiz\/how-to-install-maven-on-ubuntu-22-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/how-to-install-maven-on-ubuntu-22-04\/#primaryimage","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/10\/Install-Maven-on-Ubuntu-22.04.jpg","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/10\/Install-Maven-on-Ubuntu-22.04.jpg","width":1280,"height":680,"caption":"Install Maven on Ubuntu 22.04"},{"@type":"BreadcrumbList","@id":"http:\/\/local.brightwhiz\/how-to-install-maven-on-ubuntu-22-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/local.brightwhiz\/"},{"@type":"ListItem","position":2,"name":"How to Install Maven on Ubuntu 22.04"}]},{"@type":"WebSite","@id":"http:\/\/local.brightwhiz\/#website","url":"http:\/\/local.brightwhiz\/","name":"Brightwhiz.com","description":"Best Tech guides, Tutorials, and News","publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/local.brightwhiz\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/local.brightwhiz\/#organization","name":"Brightwhiz","url":"http:\/\/local.brightwhiz\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png","width":706,"height":135,"caption":"Brightwhiz"},"image":{"@id":"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/brightwhiz\/","https:\/\/twitter.com\/brightwhizmag","https:\/\/instagram.com\/bright_whiz\/","https:\/\/www.pinterest.com\/sobbayi\/","https:\/\/www.youtube.com\/channel\/UC6sCdP_d_RiTIM7ErFT-PSQ"]},{"@type":"Person","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32","name":"Michael Bright","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/image\/","url":"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g","contentUrl":"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g","caption":"Michael Bright"},"sameAs":["https:\/\/sobbayi.com"],"url":"http:\/\/local.brightwhiz\/author\/sobbayiadmin\/"}]}},"_links":{"self":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/12791"}],"collection":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/comments?post=12791"}],"version-history":[{"count":1,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/12791\/revisions"}],"predecessor-version":[{"id":13630,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/12791\/revisions\/13630"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media\/12792"}],"wp:attachment":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media?parent=12791"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/categories?post=12791"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/tags?post=12791"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}