|
7 | 7 | <artifactId>cms</artifactId>
|
8 | 8 | <packaging>jar</packaging>
|
9 | 9 | <name>contentstack-management-java</name>
|
10 |
| - <version>1.0.0-SNAPSHOT</version> |
| 10 | + <version>1.0.0</version> |
11 | 11 | <description>Contentstack Java Management SDK for Content Management API, Contentstack is a headless CMS with an
|
12 | 12 | API-first approach
|
13 | 13 | </description>
|
|
79 | 79 | </distributionManagement>
|
80 | 80 |
|
81 | 81 | <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> |
84 | 83 | <maven.compiler.target>1.8</maven.compiler.target>
|
85 | 84 | <maven.compiler.source>1.8</maven.compiler.source>
|
86 | 85 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
92 | 91 | <retrofit-source.version>2.9.0</retrofit-source.version>
|
93 | 92 | <converter-gson-version>2.9.0</converter-gson-version>
|
94 | 93 | <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> |
96 | 95 | <lombok-source.version>1.18.28</lombok-source.version>
|
97 | 96 | <junit-jupiter.version>5.9.2</junit-jupiter.version>
|
98 | 97 | <junit-jupiter-engine.version>5.8.0-M1</junit-jupiter-engine.version>
|
|
184 | 183 | <artifactId>maven-surefire-plugin</artifactId>
|
185 | 184 | <version>3.0.0-M5</version>
|
186 | 185 | <configuration>
|
| 186 | + <skipTests>true</skipTests> |
187 | 187 | <testFailureIgnore>true</testFailureIgnore>
|
188 | 188 | </configuration>
|
189 | 189 | </plugin>
|
|
299 | 299 | </configuration>
|
300 | 300 | </plugin>
|
301 | 301 |
|
| 302 | + |
302 | 303 | <plugin>
|
303 | 304 | <groupId>org.jacoco</groupId>
|
304 | 305 | <artifactId>jacoco-maven-plugin</artifactId>
|
305 |
| - <version>${jococo-plugin.version}</version> |
| 306 | + <version>0.8.7</version> |
306 | 307 | <executions>
|
307 | 308 | <execution>
|
308 | 309 | <id>prepare-agent</id>
|
|
312 | 313 | </execution>
|
313 | 314 | <execution>
|
314 | 315 | <id>report</id>
|
| 316 | + <phase>test</phase> |
315 | 317 | <goals>
|
316 | 318 | <goal>report</goal>
|
317 | 319 | </goals>
|
318 | 320 | </execution>
|
319 | 321 | </executions>
|
320 | 322 | </plugin>
|
321 | 323 |
|
| 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> |
322 | 344 | </plugins>
|
323 | 345 |
|
324 | 346 | <pluginManagement>
|
|
0 commit comments