Skip to content

Commit

Permalink
pom file updated
Browse files Browse the repository at this point in the history
  • Loading branch information
ishaileshmishra committed Jul 24, 2023
1 parent 4c1ebde commit 92b4277
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 42 deletions.
37 changes: 0 additions & 37 deletions .github/workflows/jacoco.yml

This file was deleted.

32 changes: 27 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<artifactId>cms</artifactId>
<packaging>jar</packaging>
<name>contentstack-management-java</name>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<description>Contentstack Java Management SDK for Content Management API, Contentstack is a headless CMS with an
API-first approach
</description>
Expand Down Expand Up @@ -79,8 +79,7 @@
</distributionManagement>

<properties>
<sdk.version>0.1.0-SNAPSHOT</sdk.version>
<sdk.version.snapshot>${sdk.version}-SNAPSHOT</sdk.version.snapshot>
<sdk.version>1.0.0</sdk.version>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand All @@ -92,7 +91,7 @@
<retrofit-source.version>2.9.0</retrofit-source.version>
<converter-gson-version>2.9.0</converter-gson-version>
<logging.version>4.10.0</logging.version>
<jococo-plugin.version>0.8.5</jococo-plugin.version>
<jococo-plugin.version>0.8.7</jococo-plugin.version>
<lombok-source.version>1.18.28</lombok-source.version>
<junit-jupiter.version>5.9.2</junit-jupiter.version>
<junit-jupiter-engine.version>5.8.0-M1</junit-jupiter-engine.version>
Expand Down Expand Up @@ -184,6 +183,7 @@
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
<configuration>
<skipTests>true</skipTests>
<testFailureIgnore>true</testFailureIgnore>
</configuration>
</plugin>
Expand Down Expand Up @@ -299,10 +299,11 @@
</configuration>
</plugin>


<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jococo-plugin.version}</version>
<version>0.8.7</version>
<executions>
<execution>
<id>prepare-agent</id>
Expand All @@ -312,13 +313,34 @@
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>


<!-- mvn pdf:pdf -->
<!-- The Maven PDF Plugin allows you generate a PDF document of your documentation -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pdf-plugin</artifactId>
<executions>
<execution>
<id>pdf</id>
<phase>site</phase>
<goals>
<goal>pdf</goal>
</goals>
<configuration>
<outputDirectory>${project.reporting.outputDirectory}</outputDirectory>
<includeReports>false</includeReports>
</configuration>
</execution>
</executions>
</plugin>
</plugins>

<pluginManagement>
Expand Down

0 comments on commit 92b4277

Please sign in to comment.