Skip to content

Commit 5543543

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

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/.env

pom.xml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,16 @@
157157

158158
<build>
159159
<plugins>
160+
161+
<plugin>
162+
<groupId>org.apache.maven.plugins</groupId>
163+
<artifactId>maven-compiler-plugin</artifactId>
164+
<version>3.1</version>
165+
<configuration>
166+
<source>1.8</source>
167+
<target>1.8</target>
168+
</configuration>
169+
</plugin>
160170
<!--
161171
# Run tests and generate .xml reports
162172
mvn test
@@ -286,6 +296,7 @@
286296
<goals>deploy</goals>
287297
</configuration>
288298
</plugin>
299+
289300
<plugin>
290301
<groupId>org.jacoco</groupId>
291302
<artifactId>jacoco-maven-plugin</artifactId>
@@ -297,14 +308,15 @@
297308
</goals>
298309
</execution>
299310
<execution>
300-
<id>report</id>
301-
<phase>prepare-package</phase>
311+
<id>generate-code-coverage-report</id>
312+
<phase>test</phase>
302313
<goals>
303314
<goal>report</goal>
304315
</goals>
305316
</execution>
306317
</executions>
307318
</plugin>
319+
308320
</plugins>
309321
</build>
310322

0 commit comments

Comments
 (0)