From 18656516fdc69f564baa214836e3ddaa6c22b0f3 Mon Sep 17 00:00:00 2001 From: husofskyzy <15997168992@163.com> Date: Fri, 8 Apr 2022 16:02:17 +0800 Subject: [PATCH 01/41] =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f9764b7..4f16eec 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # [Codecov][0] Java Example [![Build Status](https://travis-ci.org/codecov/example-java.svg?branch=master)](https://travis-ci.org/codecov/example-java) -[![codecov](https://codecov.io/gh/codecov/example-java/branch/master/graph/badge.svg)](https://codecov.io/gh/codecov/example-java) +[![codecov](https://codecov.io/gh/codecov/example-java/branch/master/graph/badge.svg)](https://codecov.io/gh/husofskyzy/example-java) [![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fcodecov%2Fexample-java.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Fcodecov%2Fexample-java?ref=badge_shield) ## Guide From 0f809cfeb96fd1e35df5f4523b1d657987ee18f9 Mon Sep 17 00:00:00 2001 From: husofskyzy <15997168992@163.com> Date: Fri, 8 Apr 2022 16:14:57 +0800 Subject: [PATCH 02/41] =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pom.xml | 2 +- .../java/org/jacoco/examples/maven/java/HelloWorld2.java | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 src/main/java/org/jacoco/examples/maven/java/HelloWorld2.java diff --git a/pom.xml b/pom.xml index 8923188..20d7edc 100644 --- a/pom.xml +++ b/pom.xml @@ -21,7 +21,7 @@ jar JaCoCo Maven plug-in example for Java project - http://www.eclemma.org/jacoco + https://github.com/husofskyzy/example-java UTF-8 1.8 diff --git a/src/main/java/org/jacoco/examples/maven/java/HelloWorld2.java b/src/main/java/org/jacoco/examples/maven/java/HelloWorld2.java new file mode 100644 index 0000000..083bcc5 --- /dev/null +++ b/src/main/java/org/jacoco/examples/maven/java/HelloWorld2.java @@ -0,0 +1,7 @@ +package org.jacoco.examples.maven.java; + +public class HelloWorld2 { + public void show(){ + System.out.println("show time"); + } +} From 00889b28d96f5239fa93fd8163e9769085275957 Mon Sep 17 00:00:00 2001 From: husofskyzy <15997168992@163.com> Date: Fri, 8 Apr 2022 16:16:17 +0800 Subject: [PATCH 03/41] =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/.gitignore | 3 +++ .idea/codeStyles/Project.xml | 7 ++++++ .idea/codeStyles/codeStyleConfig.xml | 5 +++++ .idea/compiler.xml | 13 ++++++++++++ .idea/encodings.xml | 8 +++++++ .idea/jarRepositories.xml | 20 ++++++++++++++++++ .idea/misc.xml | 12 +++++++++++ .idea/vcs.xml | 6 ++++++ .../examples/maven/java/HelloWorld.class | Bin 0 -> 515 bytes .../examples/maven/java/HelloWorldTest.class | Bin 0 -> 872 bytes 10 files changed, 74 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/codeStyles/Project.xml create mode 100644 .idea/codeStyles/codeStyleConfig.xml create mode 100644 .idea/compiler.xml create mode 100644 .idea/encodings.xml create mode 100644 .idea/jarRepositories.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/vcs.xml create mode 100644 target/classes/org/jacoco/examples/maven/java/HelloWorld.class create mode 100644 target/test-classes/org/jacoco/examples/maven/java/HelloWorldTest.class diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml new file mode 100644 index 0000000..919ce1f --- /dev/null +++ b/.idea/codeStyles/Project.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml new file mode 100644 index 0000000..a55e7a1 --- /dev/null +++ b/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..4441424 --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..63574ec --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml new file mode 100644 index 0000000..980588c --- /dev/null +++ b/.idea/jarRepositories.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..d5cd614 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,12 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/target/classes/org/jacoco/examples/maven/java/HelloWorld.class b/target/classes/org/jacoco/examples/maven/java/HelloWorld.class new file mode 100644 index 0000000000000000000000000000000000000000..8f41ffbabe3b86a7336a3ad7de4acd6bd49944d0 GIT binary patch literal 515 zcma)2O;5r=6r62Ki?H=I4Gl8M$5vXg(C*@O2#t3X3)F65rc7)Oaw#S zld-s8%zTkPa6cl(@sfZ?Bc4h%Z%8A5mKnpDm!zRP h2$hdPPg%q$r`B4%aiTrc(IAh#VvDIv4z(Kge*quFYP0|V literal 0 HcmV?d00001 diff --git a/target/test-classes/org/jacoco/examples/maven/java/HelloWorldTest.class b/target/test-classes/org/jacoco/examples/maven/java/HelloWorldTest.class new file mode 100644 index 0000000000000000000000000000000000000000..63d214b72884a10f2d4bec3bd290c3f1e3eb23e4 GIT binary patch literal 872 zcma))+iuf95QhJC4o=)94WR{EP7S9fLEsy%XoXY|hl>Cbt%Bfg<1S_^XSaCQ6|aQ^ z6oJG8@KA`cYvHKe>6djsVZ3dm*hAG0oMT%PQf)uF29! zK2`bL=c;Y<&-Zc#I5^HQ3>VgkBft^^FIXFebbXE+xas2-$8Bsf++7%!k3n-6zakMj z4quf&E{Ny$S{=L_j;owqmnt2T0NqNI9cyJuC@u=)$;V72q}%3TuI_}r^?zhIL7yH| zn;sdX$3**)RU@0Ep|e9?NH?RqF**kOOooSLI-5nXg)Z6rBmrm9BahUkVy`HEP{1f- z^b_9OW7NK)UNQ3b3(8v}V#VPlXQk}2S}@Q5V{VtsPOmZgf_m*6n&07{rsgxO%uze1 Ns22+AMLIpK{RLH=#gqU5 literal 0 HcmV?d00001 From 43a94fbebf81139ba7cbe6e8910877c3df38eec5 Mon Sep 17 00:00:00 2001 From: husofskyzy <15997168992@163.com> Date: Mon, 11 Apr 2022 02:42:31 +0800 Subject: [PATCH 04/41] =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/encodings.xml | 1 - .idea/jarRepositories.xml | 5 +++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.idea/encodings.xml b/.idea/encodings.xml index 63574ec..0e1c064 100644 --- a/.idea/encodings.xml +++ b/.idea/encodings.xml @@ -2,7 +2,6 @@ - \ No newline at end of file diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml index 980588c..2e1bf07 100644 --- a/.idea/jarRepositories.xml +++ b/.idea/jarRepositories.xml @@ -1,6 +1,11 @@ + +