|
8 | 8 | <artifactId>cms</artifactId> |
9 | 9 | <name>contentstack-management-java</name> |
10 | 10 | <version>0.0.1-SNAPSHOT</version> |
11 | | - <description>Java SDK for Contentstack Content Management API, Contentstack is a headless CMS with an API-first approach |
| 11 | + <description>Java SDK for Contentstack Content Management API, Contentstack is a headless CMS with an API-first |
| 12 | + approach |
12 | 13 | </description> |
13 | 14 | <url>https://github.com/contentstack/contentstack-management-java/</url> |
14 | 15 |
|
|
21 | 22 | <scm> |
22 | 23 | <url>https://github.com/contentstack/contentstack-management-java</url> |
23 | 24 | <connection>scm:git:git://github.com/contentstack/contentstack-management-java.git</connection> |
24 | | - <developerConnection>scm:git:ssh://github.com:contentstack/contentstack-management-java.git</developerConnection> |
| 25 | + <developerConnection>scm:git:ssh://github.com:contentstack/contentstack-management-java.git |
| 26 | + </developerConnection> |
25 | 27 | <tag>HEAD</tag> |
26 | 28 | </scm> |
27 | 29 |
|
|
73 | 75 | <maven.compiler.target>1.8</maven.compiler.target> |
74 | 76 | <maven.compiler.source>1.8</maven.compiler.source> |
75 | 77 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
76 | | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
77 | | - <project.reporting.sourceEncoding>UTF-8</project.reporting.sourceEncoding> |
78 | | - <build-helper.version>3.0.0</build-helper.version> |
| 78 | + <!-- <build-helper.version>3.0.0</build-helper.version>--> |
79 | 79 | <surefire-report-plugin.version>2.22.0</surefire-report-plugin.version> |
80 | 80 | <maven-source-plugin.version>2.2.1</maven-source-plugin.version> |
81 | 81 | <maven-javadoc-plugin.version>3.1.1</maven-javadoc-plugin.version> |
82 | 82 | <dotenv-source.version>5.2.2</dotenv-source.version> |
83 | 83 | <rxjava-source.version>3.0.10</rxjava-source.version> |
84 | | - <retrofit-source.version>2.5.0</retrofit-source.version> |
| 84 | + <retrofit-source.version>2.9.0</retrofit-source.version> |
85 | 85 | <converter-gson-source.version>2.3.0</converter-gson-source.version> |
86 | 86 | <loggin.version>3.9.0</loggin.version> |
87 | 87 | <jococo-plugin.version>0.8.5</jococo-plugin.version> |
88 | 88 | <lombok-source.version>1.18.18</lombok-source.version> |
89 | 89 | <junit-jupiter.version>5.7.1</junit-jupiter.version> |
| 90 | + <junit-jupiter-engine.version>5.8.0-M1</junit-jupiter-engine.version> |
| 91 | + <junit-vintage-engine.version>5.7.0</junit-vintage-engine.version> |
90 | 92 | <gson.version>2.8.6</gson.version> |
91 | 93 | <maven-site-plugin.version>3.3</maven-site-plugin.version> |
92 | 94 | <maven-gpg-plugin.version>1.5</maven-gpg-plugin.version> |
|
140 | 142 | <dependency> |
141 | 143 | <groupId>org.junit.vintage</groupId> |
142 | 144 | <artifactId>junit-vintage-engine</artifactId> |
143 | | - <version>5.7.0</version> |
| 145 | + <version>${junit-vintage-engine.version}</version> |
| 146 | + </dependency> |
| 147 | + |
| 148 | + <dependency> |
| 149 | + <groupId>com.googlecode.json-simple</groupId> |
| 150 | + <artifactId>json-simple</artifactId> |
| 151 | + <version>1.1.1</version> |
144 | 152 | </dependency> |
145 | 153 | </dependencies> |
146 | 154 |
|
|
150 | 158 | <groupId>org.apache.maven.plugins</groupId> |
151 | 159 | <artifactId>maven-jxr-plugin</artifactId> |
152 | 160 | <version>3.0.0</version> |
153 | | - <configuration> |
154 | | - <linkXRef>false</linkXRef> |
155 | | - </configuration> |
156 | 161 | </plugin> |
157 | 162 | <!-- |
158 | 163 | # Run tests and generate .xml reports |
|
250 | 255 | <artifactId>maven-compiler-plugin</artifactId> |
251 | 256 | <version>${maven-compiler-plugin.version}</version> |
252 | 257 | <configuration> |
253 | | -<!-- <source>${java.version}</source>--> |
254 | | -<!-- <target>${java.version}</target>--> |
| 258 | + <!-- <source>${java.version}</source>--> |
| 259 | + <!-- <target>${java.version}</target>--> |
255 | 260 | <compilerArgument>-Xlint:all</compilerArgument> |
256 | 261 | <showWarnings>true</showWarnings> |
257 | 262 | <showDeprecation>true</showDeprecation> |
|
304 | 309 | </executions> |
305 | 310 | </plugin> |
306 | 311 |
|
| 312 | + <plugin> |
| 313 | + <groupId>org.apache.maven.plugins</groupId> |
| 314 | + <artifactId>maven-surefire-plugin</artifactId> |
| 315 | + <version>2.22.2</version> |
| 316 | + <configuration> |
| 317 | + <properties> |
| 318 | + <configurationParameters> |
| 319 | + junit.jupiter.extensions.autodetection.enabled = true |
| 320 | + junit.jupiter.testinstance.lifecycle.default = per_class |
| 321 | + junit.jupiter.execution.parallel.enabled = true |
| 322 | + junit.jupiter.execution.parallel.mode.default = concurrent |
| 323 | + junit.jupiter.execution.parallel.config.fixed.parallelism |
| 324 | + </configurationParameters> |
| 325 | + </properties> |
| 326 | + </configuration> |
| 327 | + </plugin> |
| 328 | + |
307 | 329 | </plugins> |
308 | 330 | </build> |
309 | 331 |
|
|
0 commit comments