{"id":5,"date":"2017-09-01T13:23:18","date_gmt":"2017-09-01T04:23:18","guid":{"rendered":"http:\/\/dev.e-luda.com\/dev-note\/?p=25"},"modified":"2022-04-22T14:20:53","modified_gmt":"2022-04-22T05:20:53","slug":"jenkins-plug-jacoco-1","status":"publish","type":"post","link":"http:\/\/dev.e-luda.com\/dev-note\/?p=5","title":{"rendered":"jenkins plug-in jacoco \uc124\uce58\ud6c4 test coverage \uce21\uc815 \uc218\ud589\ud558\uc9c0 \uc54a\uc744 \uacbd\uc6b0."},"content":{"rendered":"<p>Jenkins\uc5d0 Plug-in \ud615\uc2dd\uc73c\ub85c jacoco \ub97c \uc124\uce58\ud558\uc600\uc744 \uacbd\uc6b0, Test Coverage \uce21\uc815 \uc218\ud589\uc744 \ud558\uc9c0 \ubabb\ud558\uc5ec Coverage Ratio\uac00 0%\uc778 \uacbd\uc6b0\uac00 \ubc1c\uc0dd \ud560 \uacbd\uc6b0<\/p>\n<p>jacoco.exec\ub97c \uc0dd\uc131\ud558\uc9c0 \ubabb\ud558\uc5ec test coverage \uce21\uc815\uc774 \ub418\uc9c0 \uc54a\uc744 \uacbd\uc6b0\uac00 \uc788\ub2e4.<\/p>\n<figure id=\"attachment_70\" aria-describedby=\"caption-attachment-70\" style=\"width: 1031px\" class=\"wp-caption alignnone\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-70\" src=\"http:\/\/dev.e-luda.com\/dev-note\/wp-content\/uploads\/2017\/09\/jenkins_jacoco1.jpg\" alt=\"\" width=\"1031\" height=\"363\" srcset=\"http:\/\/dev.e-luda.com\/dev-note\/wp-content\/uploads\/2017\/09\/jenkins_jacoco1.jpg 1031w, http:\/\/dev.e-luda.com\/dev-note\/wp-content\/uploads\/2017\/09\/jenkins_jacoco1-300x106.jpg 300w, http:\/\/dev.e-luda.com\/dev-note\/wp-content\/uploads\/2017\/09\/jenkins_jacoco1-768x270.jpg 768w, http:\/\/dev.e-luda.com\/dev-note\/wp-content\/uploads\/2017\/09\/jenkins_jacoco1-1024x361.jpg 1024w\" sizes=\"auto, (max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 543px, 580px\" \/><figcaption id=\"caption-attachment-70\" class=\"wp-caption-text\">jacoco \uc218\ud589 \uacb0\uacfc<\/figcaption><\/figure>\n<p>&nbsp;<\/p>\n<figure id=\"attachment_71\" aria-describedby=\"caption-attachment-71\" style=\"width: 934px\" class=\"wp-caption alignnone\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-71\" src=\"http:\/\/dev.e-luda.com\/dev-note\/wp-content\/uploads\/2017\/09\/jenkins_jacoco2.jpg\" alt=\"\" width=\"934\" height=\"354\" srcset=\"http:\/\/dev.e-luda.com\/dev-note\/wp-content\/uploads\/2017\/09\/jenkins_jacoco2.jpg 934w, http:\/\/dev.e-luda.com\/dev-note\/wp-content\/uploads\/2017\/09\/jenkins_jacoco2-300x114.jpg 300w, http:\/\/dev.e-luda.com\/dev-note\/wp-content\/uploads\/2017\/09\/jenkins_jacoco2-768x291.jpg 768w\" sizes=\"auto, (max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 543px, 580px\" \/><figcaption id=\"caption-attachment-71\" class=\"wp-caption-text\">jenkins build console log<\/figcaption><\/figure>\n<p>&nbsp;<\/p>\n<figure id=\"attachment_72\" aria-describedby=\"caption-attachment-72\" style=\"width: 630px\" class=\"wp-caption alignnone\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-72\" src=\"http:\/\/dev.e-luda.com\/dev-note\/wp-content\/uploads\/2017\/09\/jenkins_jacoco3.jpg\" alt=\"\" width=\"630\" height=\"327\" srcset=\"http:\/\/dev.e-luda.com\/dev-note\/wp-content\/uploads\/2017\/09\/jenkins_jacoco3.jpg 630w, http:\/\/dev.e-luda.com\/dev-note\/wp-content\/uploads\/2017\/09\/jenkins_jacoco3-300x156.jpg 300w\" sizes=\"auto, (max-width: 630px) 100vw, 630px\" \/><figcaption id=\"caption-attachment-72\" class=\"wp-caption-text\">jacoco.exec download error<\/figcaption><\/figure>\n<p>&nbsp;<\/p>\n<p>&lt;\ud574\uacb0 \ubc29\uc548&gt;<\/p>\n<p>\u203b jacoco.exec file\uc744 \uc0dd\uc131\ud558\uc9c0 \ubabb\ud558\uc5ec \ubc1c\uc0dd\ud55c \uacbd\uc6b0\ub85c, jacoco.exec file\uc744 \uc0dd\uc131\ud560 \uc218 \uc788\uac8c \uc870\uce58\ud574 \uc900\ub2e4.<\/p>\n<p>&nbsp;<\/p>\n<p>pom.xml\uc758 build\ubd80\ubd84\uc5d0 \ub2e4\uc74c script\ub97c \ucd94\uac00\ud55c\ub2e4.<\/p>\n<pre>&lt;build&gt;\n  \u2026\n  &lt;plugins&gt;\n    \u2026\n    &lt;plugin&gt;\n      &lt;groupId&gt;org.jacoco&lt;\/groupId&gt;\n      &lt;artifactId&gt;<u>jacoco-maven-plugin&lt;\/artifactId&gt;<\/u>\n      &lt;version&gt;0.7.9&lt;\/version&gt;\n      &lt;executions&gt;\n        &lt;!-- prepare agent for measuring unit tests --&gt;\n        &lt;execution&gt;\n          &lt;id&gt;prepare-unit-tests&lt;\/id&gt;\n          &lt;goals&gt;\n            &lt;goal&gt;prepare-agent&lt;\/goal&gt;\n          &lt;\/goals&gt;\n          &lt;configuration&gt;\n            &lt;destFile&gt;${sonar.jacoco.reportPath}&lt;\/destFile&gt;\n          &lt;\/configuration&gt;\n        &lt;\/execution&gt;\n      &lt;\/executions&gt;\n    &lt;\/plugin&gt;\n    \u2026\n  &lt;\/plugins&gt;\n  \u2026.\n&lt;\/build&gt;\n\n\uc815\uc0c1 \uce21\uc815 \uacb0\uacfc<\/pre>\n<figure id=\"attachment_73\" aria-describedby=\"caption-attachment-73\" style=\"width: 1036px\" class=\"wp-caption alignnone\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-73\" src=\"http:\/\/dev.e-luda.com\/dev-note\/wp-content\/uploads\/2017\/09\/jenkins_jacoco4.jpg\" alt=\"\" width=\"1036\" height=\"385\" srcset=\"http:\/\/dev.e-luda.com\/dev-note\/wp-content\/uploads\/2017\/09\/jenkins_jacoco4.jpg 1036w, http:\/\/dev.e-luda.com\/dev-note\/wp-content\/uploads\/2017\/09\/jenkins_jacoco4-300x111.jpg 300w, http:\/\/dev.e-luda.com\/dev-note\/wp-content\/uploads\/2017\/09\/jenkins_jacoco4-768x285.jpg 768w, http:\/\/dev.e-luda.com\/dev-note\/wp-content\/uploads\/2017\/09\/jenkins_jacoco4-1024x381.jpg 1024w\" sizes=\"auto, (max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 543px, 580px\" \/><figcaption id=\"caption-attachment-73\" class=\"wp-caption-text\">\uc815\uc0c1 \uce21\uc815<\/figcaption><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>Jenkins\uc5d0 Plug-in \ud615\uc2dd\uc73c\ub85c jacoco \ub97c \uc124\uce58\ud558\uc600\uc744 \uacbd\uc6b0, Test Coverage \uce21\uc815 \uc218\ud589\uc744 \ud558\uc9c0 \ubabb\ud558\uc5ec Coverage Ratio\uac00 0%\uc778 \uacbd\uc6b0\uac00 \ubc1c\uc0dd \ud560 \uacbd\uc6b0 jacoco.exec\ub97c \uc0dd\uc131\ud558\uc9c0 \ubabb\ud558\uc5ec test coverage \uce21\uc815\uc774 \ub418\uc9c0 \uc54a\uc744 \uacbd\uc6b0\uac00 \uc788\ub2e4. &nbsp; &nbsp; &nbsp; &lt;\ud574\uacb0 \ubc29\uc548&gt; \u203b jacoco.exec file\uc744 \uc0dd\uc131\ud558\uc9c0 \ubabb\ud558\uc5ec \ubc1c\uc0dd\ud55c \uacbd\uc6b0\ub85c, jacoco.exec file\uc744 \uc0dd\uc131\ud560 \uc218 \uc788\uac8c \uc870\uce58\ud574 \uc900\ub2e4. &nbsp; pom.xml\uc758 build\ubd80\ubd84\uc5d0 \ub2e4\uc74c script\ub97c \ucd94\uac00\ud55c\ub2e4. &hellip; <\/p>\n<p class=\"link-more\"><a href=\"http:\/\/dev.e-luda.com\/dev-note\/?p=5\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;jenkins plug-in jacoco \uc124\uce58\ud6c4 test coverage \uce21\uc815 \uc218\ud589\ud558\uc9c0 \uc54a\uc744 \uacbd\uc6b0.&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[10,6],"tags":[],"class_list":["post-5","post","type-post","status-publish","format-standard","hentry","category-jacoco","category-jenkins"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v18.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>jenkins plug-in jacoco \uc124\uce58\ud6c4 test coverage \uce21\uc815 \uc218\ud589\ud558\uc9c0 \uc54a\uc744 \uacbd\uc6b0. - \ub9c8\ubc95\uc0ac\ub9ac\uc758\uac1c\ubc1c\ub178\ud2b8<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/dev.e-luda.com\/dev-note\/?p=5\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"jenkins plug-in jacoco \uc124\uce58\ud6c4 test coverage \uce21\uc815 \uc218\ud589\ud558\uc9c0 \uc54a\uc744 \uacbd\uc6b0. - \ub9c8\ubc95\uc0ac\ub9ac\uc758\uac1c\ubc1c\ub178\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Jenkins\uc5d0 Plug-in \ud615\uc2dd\uc73c\ub85c jacoco \ub97c \uc124\uce58\ud558\uc600\uc744 \uacbd\uc6b0, Test Coverage \uce21\uc815 \uc218\ud589\uc744 \ud558\uc9c0 \ubabb\ud558\uc5ec Coverage Ratio\uac00 0%\uc778 \uacbd\uc6b0\uac00 \ubc1c\uc0dd \ud560 \uacbd\uc6b0 jacoco.exec\ub97c \uc0dd\uc131\ud558\uc9c0 \ubabb\ud558\uc5ec test coverage \uce21\uc815\uc774 \ub418\uc9c0 \uc54a\uc744 \uacbd\uc6b0\uac00 \uc788\ub2e4. &nbsp; &nbsp; &nbsp; &lt;\ud574\uacb0 \ubc29\uc548&gt; \u203b jacoco.exec file\uc744 \uc0dd\uc131\ud558\uc9c0 \ubabb\ud558\uc5ec \ubc1c\uc0dd\ud55c \uacbd\uc6b0\ub85c, jacoco.exec file\uc744 \uc0dd\uc131\ud560 \uc218 \uc788\uac8c \uc870\uce58\ud574 \uc900\ub2e4. &nbsp; pom.xml\uc758 build\ubd80\ubd84\uc5d0 \ub2e4\uc74c script\ub97c \ucd94\uac00\ud55c\ub2e4. &hellip; \ub354 \ubcf4\uae30 &quot;jenkins plug-in jacoco \uc124\uce58\ud6c4 test coverage \uce21\uc815 \uc218\ud589\ud558\uc9c0 \uc54a\uc744 \uacbd\uc6b0.&quot;\" \/>\n<meta property=\"og:url\" content=\"http:\/\/dev.e-luda.com\/dev-note\/?p=5\" \/>\n<meta property=\"og:site_name\" content=\"\ub9c8\ubc95\uc0ac\ub9ac\uc758\uac1c\ubc1c\ub178\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2017-09-01T04:23:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-04-22T05:20:53+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/dev.e-luda.com\/dev-note\/wp-content\/uploads\/2017\/09\/jenkins_jacoco1.jpg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"wizardlee\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebSite\",\"@id\":\"http:\/\/dev.e-luda.com\/dev-note\/#website\",\"url\":\"http:\/\/dev.e-luda.com\/dev-note\/\",\"name\":\"\ub9c8\ubc95\uc0ac\ub9ac\uc758\uac1c\ubc1c\ub178\ud2b8\",\"description\":\"\ub2e4\ub978 \uc6cc\ub4dc\ud504\ub808\uc2a4 \uc0ac\uc774\ud2b8\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/dev.e-luda.com\/dev-note\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"ImageObject\",\"@id\":\"http:\/\/dev.e-luda.com\/dev-note\/?p=5#primaryimage\",\"inLanguage\":\"ko-KR\",\"url\":\"\",\"contentUrl\":\"\",\"width\":1031,\"height\":363},{\"@type\":\"WebPage\",\"@id\":\"http:\/\/dev.e-luda.com\/dev-note\/?p=5#webpage\",\"url\":\"http:\/\/dev.e-luda.com\/dev-note\/?p=5\",\"name\":\"jenkins plug-in jacoco \uc124\uce58\ud6c4 test coverage \uce21\uc815 \uc218\ud589\ud558\uc9c0 \uc54a\uc744 \uacbd\uc6b0. - \ub9c8\ubc95\uc0ac\ub9ac\uc758\uac1c\ubc1c\ub178\ud2b8\",\"isPartOf\":{\"@id\":\"http:\/\/dev.e-luda.com\/dev-note\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\/\/dev.e-luda.com\/dev-note\/?p=5#primaryimage\"},\"datePublished\":\"2017-09-01T04:23:18+00:00\",\"dateModified\":\"2022-04-22T05:20:53+00:00\",\"author\":{\"@id\":\"http:\/\/dev.e-luda.com\/dev-note\/#\/schema\/person\/7e381f3b46b7824adbe15ff43b53c42c\"},\"breadcrumb\":{\"@id\":\"http:\/\/dev.e-luda.com\/dev-note\/?p=5#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/dev.e-luda.com\/dev-note\/?p=5\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/dev.e-luda.com\/dev-note\/?p=5#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/dev.e-luda.com\/dev-note\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"jenkins plug-in jacoco \uc124\uce58\ud6c4 test coverage \uce21\uc815 \uc218\ud589\ud558\uc9c0 \uc54a\uc744 \uacbd\uc6b0.\"}]},{\"@type\":\"Person\",\"@id\":\"http:\/\/dev.e-luda.com\/dev-note\/#\/schema\/person\/7e381f3b46b7824adbe15ff43b53c42c\",\"name\":\"wizardlee\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"http:\/\/dev.e-luda.com\/dev-note\/#personlogo\",\"inLanguage\":\"ko-KR\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/6eaa1dedfb9710f350bbf8ccb317e7cfa2a5a277b535c6558bc57169262ec430?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/6eaa1dedfb9710f350bbf8ccb317e7cfa2a5a277b535c6558bc57169262ec430?s=96&d=mm&r=g\",\"caption\":\"wizardlee\"},\"sameAs\":[\"http:\/\/dev.e-luda.com\/dev-note\"],\"url\":\"http:\/\/dev.e-luda.com\/dev-note\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"jenkins plug-in jacoco \uc124\uce58\ud6c4 test coverage \uce21\uc815 \uc218\ud589\ud558\uc9c0 \uc54a\uc744 \uacbd\uc6b0. - \ub9c8\ubc95\uc0ac\ub9ac\uc758\uac1c\ubc1c\ub178\ud2b8","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:\/\/dev.e-luda.com\/dev-note\/?p=5","og_locale":"ko_KR","og_type":"article","og_title":"jenkins plug-in jacoco \uc124\uce58\ud6c4 test coverage \uce21\uc815 \uc218\ud589\ud558\uc9c0 \uc54a\uc744 \uacbd\uc6b0. - \ub9c8\ubc95\uc0ac\ub9ac\uc758\uac1c\ubc1c\ub178\ud2b8","og_description":"Jenkins\uc5d0 Plug-in \ud615\uc2dd\uc73c\ub85c jacoco \ub97c \uc124\uce58\ud558\uc600\uc744 \uacbd\uc6b0, Test Coverage \uce21\uc815 \uc218\ud589\uc744 \ud558\uc9c0 \ubabb\ud558\uc5ec Coverage Ratio\uac00 0%\uc778 \uacbd\uc6b0\uac00 \ubc1c\uc0dd \ud560 \uacbd\uc6b0 jacoco.exec\ub97c \uc0dd\uc131\ud558\uc9c0 \ubabb\ud558\uc5ec test coverage \uce21\uc815\uc774 \ub418\uc9c0 \uc54a\uc744 \uacbd\uc6b0\uac00 \uc788\ub2e4. &nbsp; &nbsp; &nbsp; &lt;\ud574\uacb0 \ubc29\uc548&gt; \u203b jacoco.exec file\uc744 \uc0dd\uc131\ud558\uc9c0 \ubabb\ud558\uc5ec \ubc1c\uc0dd\ud55c \uacbd\uc6b0\ub85c, jacoco.exec file\uc744 \uc0dd\uc131\ud560 \uc218 \uc788\uac8c \uc870\uce58\ud574 \uc900\ub2e4. &nbsp; pom.xml\uc758 build\ubd80\ubd84\uc5d0 \ub2e4\uc74c script\ub97c \ucd94\uac00\ud55c\ub2e4. &hellip; \ub354 \ubcf4\uae30 \"jenkins plug-in jacoco \uc124\uce58\ud6c4 test coverage \uce21\uc815 \uc218\ud589\ud558\uc9c0 \uc54a\uc744 \uacbd\uc6b0.\"","og_url":"http:\/\/dev.e-luda.com\/dev-note\/?p=5","og_site_name":"\ub9c8\ubc95\uc0ac\ub9ac\uc758\uac1c\ubc1c\ub178\ud2b8","article_published_time":"2017-09-01T04:23:18+00:00","article_modified_time":"2022-04-22T05:20:53+00:00","og_image":[{"url":"http:\/\/dev.e-luda.com\/dev-note\/wp-content\/uploads\/2017\/09\/jenkins_jacoco1.jpg"}],"twitter_card":"summary_large_image","twitter_misc":{"Written by":"wizardlee","Est. reading time":"2\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebSite","@id":"http:\/\/dev.e-luda.com\/dev-note\/#website","url":"http:\/\/dev.e-luda.com\/dev-note\/","name":"\ub9c8\ubc95\uc0ac\ub9ac\uc758\uac1c\ubc1c\ub178\ud2b8","description":"\ub2e4\ub978 \uc6cc\ub4dc\ud504\ub808\uc2a4 \uc0ac\uc774\ud2b8","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/dev.e-luda.com\/dev-note\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"ko-KR"},{"@type":"ImageObject","@id":"http:\/\/dev.e-luda.com\/dev-note\/?p=5#primaryimage","inLanguage":"ko-KR","url":"","contentUrl":"","width":1031,"height":363},{"@type":"WebPage","@id":"http:\/\/dev.e-luda.com\/dev-note\/?p=5#webpage","url":"http:\/\/dev.e-luda.com\/dev-note\/?p=5","name":"jenkins plug-in jacoco \uc124\uce58\ud6c4 test coverage \uce21\uc815 \uc218\ud589\ud558\uc9c0 \uc54a\uc744 \uacbd\uc6b0. - \ub9c8\ubc95\uc0ac\ub9ac\uc758\uac1c\ubc1c\ub178\ud2b8","isPartOf":{"@id":"http:\/\/dev.e-luda.com\/dev-note\/#website"},"primaryImageOfPage":{"@id":"http:\/\/dev.e-luda.com\/dev-note\/?p=5#primaryimage"},"datePublished":"2017-09-01T04:23:18+00:00","dateModified":"2022-04-22T05:20:53+00:00","author":{"@id":"http:\/\/dev.e-luda.com\/dev-note\/#\/schema\/person\/7e381f3b46b7824adbe15ff43b53c42c"},"breadcrumb":{"@id":"http:\/\/dev.e-luda.com\/dev-note\/?p=5#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["http:\/\/dev.e-luda.com\/dev-note\/?p=5"]}]},{"@type":"BreadcrumbList","@id":"http:\/\/dev.e-luda.com\/dev-note\/?p=5#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/dev.e-luda.com\/dev-note"},{"@type":"ListItem","position":2,"name":"jenkins plug-in jacoco \uc124\uce58\ud6c4 test coverage \uce21\uc815 \uc218\ud589\ud558\uc9c0 \uc54a\uc744 \uacbd\uc6b0."}]},{"@type":"Person","@id":"http:\/\/dev.e-luda.com\/dev-note\/#\/schema\/person\/7e381f3b46b7824adbe15ff43b53c42c","name":"wizardlee","image":{"@type":"ImageObject","@id":"http:\/\/dev.e-luda.com\/dev-note\/#personlogo","inLanguage":"ko-KR","url":"https:\/\/secure.gravatar.com\/avatar\/6eaa1dedfb9710f350bbf8ccb317e7cfa2a5a277b535c6558bc57169262ec430?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6eaa1dedfb9710f350bbf8ccb317e7cfa2a5a277b535c6558bc57169262ec430?s=96&d=mm&r=g","caption":"wizardlee"},"sameAs":["http:\/\/dev.e-luda.com\/dev-note"],"url":"http:\/\/dev.e-luda.com\/dev-note\/?author=1"}]}},"_links":{"self":[{"href":"http:\/\/dev.e-luda.com\/dev-note\/index.php?rest_route=\/wp\/v2\/posts\/5","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/dev.e-luda.com\/dev-note\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/dev.e-luda.com\/dev-note\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/dev.e-luda.com\/dev-note\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/dev.e-luda.com\/dev-note\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=5"}],"version-history":[{"count":1,"href":"http:\/\/dev.e-luda.com\/dev-note\/index.php?rest_route=\/wp\/v2\/posts\/5\/revisions"}],"predecessor-version":[{"id":544,"href":"http:\/\/dev.e-luda.com\/dev-note\/index.php?rest_route=\/wp\/v2\/posts\/5\/revisions\/544"}],"wp:attachment":[{"href":"http:\/\/dev.e-luda.com\/dev-note\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=5"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/dev.e-luda.com\/dev-note\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=5"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/dev.e-luda.com\/dev-note\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=5"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}