Skip to content

Commit 16830eb

Browse files
pom file updated
1 parent e38b0cf commit 16830eb

File tree

2 files changed

+27
-42
lines changed

2 files changed

+27
-42
lines changed

.github/workflows/jacoco.yml

-37
This file was deleted.

pom.xml

+27-5
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<artifactId>cms</artifactId>
88
<packaging>jar</packaging>
99
<name>contentstack-management-java</name>
10-
<version>1.0.0-SNAPSHOT</version>
10+
<version>1.0.0</version>
1111
<description>Contentstack Java Management SDK for Content Management API, Contentstack is a headless CMS with an
1212
API-first approach
1313
</description>
@@ -79,8 +79,7 @@
7979
</distributionManagement>
8080

8181
<properties>
82-
<sdk.version>0.1.0-SNAPSHOT</sdk.version>
83-
<sdk.version.snapshot>${sdk.version}-SNAPSHOT</sdk.version.snapshot>
82+
<sdk.version>1.0.0</sdk.version>
8483
<maven.compiler.target>1.8</maven.compiler.target>
8584
<maven.compiler.source>1.8</maven.compiler.source>
8685
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -92,7 +91,7 @@
9291
<retrofit-source.version>2.9.0</retrofit-source.version>
9392
<converter-gson-version>2.9.0</converter-gson-version>
9493
<logging.version>4.10.0</logging.version>
95-
<jococo-plugin.version>0.8.5</jococo-plugin.version>
94+
<jococo-plugin.version>0.8.7</jococo-plugin.version>
9695
<lombok-source.version>1.18.28</lombok-source.version>
9796
<junit-jupiter.version>5.9.2</junit-jupiter.version>
9897
<junit-jupiter-engine.version>5.8.0-M1</junit-jupiter-engine.version>
@@ -184,6 +183,7 @@
184183
<artifactId>maven-surefire-plugin</artifactId>
185184
<version>3.0.0-M5</version>
186185
<configuration>
186+
<skipTests>true</skipTests>
187187
<testFailureIgnore>true</testFailureIgnore>
188188
</configuration>
189189
</plugin>
@@ -299,10 +299,11 @@
299299
</configuration>
300300
</plugin>
301301

302+
302303
<plugin>
303304
<groupId>org.jacoco</groupId>
304305
<artifactId>jacoco-maven-plugin</artifactId>
305-
<version>${jococo-plugin.version}</version>
306+
<version>0.8.7</version>
306307
<executions>
307308
<execution>
308309
<id>prepare-agent</id>
@@ -312,13 +313,34 @@
312313
</execution>
313314
<execution>
314315
<id>report</id>
316+
<phase>test</phase>
315317
<goals>
316318
<goal>report</goal>
317319
</goals>
318320
</execution>
319321
</executions>
320322
</plugin>
321323

324+
325+
<!-- mvn pdf:pdf -->
326+
<!-- The Maven PDF Plugin allows you generate a PDF document of your documentation -->
327+
<plugin>
328+
<groupId>org.apache.maven.plugins</groupId>
329+
<artifactId>maven-pdf-plugin</artifactId>
330+
<executions>
331+
<execution>
332+
<id>pdf</id>
333+
<phase>site</phase>
334+
<goals>
335+
<goal>pdf</goal>
336+
</goals>
337+
<configuration>
338+
<outputDirectory>${project.reporting.outputDirectory}</outputDirectory>
339+
<includeReports>false</includeReports>
340+
</configuration>
341+
</execution>
342+
</executions>
343+
</plugin>
322344
</plugins>
323345

324346
<pluginManagement>

0 commit comments

Comments
 (0)