Skip to content

Commit b798240

Browse files
shaileshmishrashaileshmishra
authored andcommitted
✅ initial commit
1 parent 5543543 commit b798240

File tree

2 files changed

+4
-15
lines changed

2 files changed

+4
-15
lines changed

.github/workflows/maven.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ jobs:
3838
- name: Commit the badge (if it changed)
3939
run: |
4040
if [[ `git status --porcelain` ]]; then
41-
git config --global user.name 'YOUR NAME HERE'
42-
git config --global user.email 'YOUR-GITHUB-USERID@users.noreply.github.com'
41+
git config --global user.name '***REMOVED***'
42+
git config --global user.email '***REMOVED***'
4343
git add -A
4444
git commit -m "Autogenerated JaCoCo coverage badge"
4545
git push

pom.xml

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@
7070
</distributionManagement>
7171

7272
<properties>
73-
<maven.compiler.source>8</maven.compiler.source>
74-
<maven.compiler.target>8</maven.compiler.target>
73+
<maven.compiler.target>1.8</maven.compiler.target>
74+
<maven.compiler.source>1.8</maven.compiler.source>
7575
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
7676
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
7777
<project.reporting.sourceEncoding>UTF-8</project.reporting.sourceEncoding>
@@ -87,7 +87,6 @@
8787
<jococo-plugin.version>0.8.5</jococo-plugin.version>
8888
<lombok-source.version>1.18.18</lombok-source.version>
8989
<junit-jupiter.version>5.7.1</junit-jupiter.version>
90-
<!-- <jackson-databind.version>2.11.1</jackson-databind.version>-->
9190
<gson.version>2.8.6</gson.version>
9291
<maven-site-plugin.version>3.3</maven-site-plugin.version>
9392
<maven-gpg-plugin.version>1.5</maven-gpg-plugin.version>
@@ -132,11 +131,6 @@
132131
<artifactId>lombok</artifactId>
133132
<version>${lombok-source.version}</version>
134133
</dependency>
135-
<!-- <dependency>-->
136-
<!-- <groupId>com.fasterxml.jackson.core</groupId>-->
137-
<!-- <artifactId>jackson-databind</artifactId>-->
138-
<!-- <version>${jackson-databind.version}</version>-->
139-
<!-- </dependency>-->
140134
<dependency>
141135
<groupId>org.junit.jupiter</groupId>
142136
<artifactId>junit-jupiter</artifactId>
@@ -148,11 +142,6 @@
148142
<artifactId>junit-vintage-engine</artifactId>
149143
<version>5.7.0</version>
150144
</dependency>
151-
<!-- <dependency>-->
152-
<!-- <groupId>com.squareup.retrofit2</groupId>-->
153-
<!-- <artifactId>converter-jackson</artifactId>-->
154-
<!-- <version>2.9.0</version>-->
155-
<!-- </dependency>-->
156145
</dependencies>
157146

158147
<build>

0 commit comments

Comments
 (0)