|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
3 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 | 5 | <modelVersion>4.0.0</modelVersion> |
5 | 6 | <groupId>com.contentstack.sdk</groupId> |
6 | 7 | <artifactId>cms</artifactId> |
7 | 8 | <packaging>jar</packaging> |
8 | 9 | <name>contentstack-management-java</name> |
9 | | - <version>1.1.2-SNAPSHOT</version> |
| 10 | + <version>1.0.0-SNAPSHOT</version> |
10 | 11 | <description>Contentstack Java Management SDK for Content Management API, Contentstack is a headless CMS with an |
11 | 12 | API-first approach |
12 | 13 | </description> |
|
45 | 46 | </organization> |
46 | 47 |
|
47 | 48 | <developers> |
48 | | - <developer> |
49 | | - <name>shaileshmishra</name> |
50 | | - <email>shailesh.mishra@contentstack.com</email> |
51 | | - <organization>contentstack</organization> |
52 | | - <organizationUrl>https://www.contentstack.com/</organizationUrl> |
53 | | - </developer> |
54 | | - |
55 | 49 | <developer> |
56 | 50 | <name>contentstack</name> |
57 | 51 | <email>mobile@contentstack.com</email> |
58 | 52 | <organization>Contentstack</organization> |
59 | 53 | <organizationUrl>https://www.contentstack.com/</organizationUrl> |
60 | 54 | </developer> |
| 55 | + <developer> |
| 56 | + <name>ishaileshmishra</name> |
| 57 | + <email>mshaileshr@gmail.com</email> |
| 58 | + <organization>contentstack</organization> |
| 59 | + <organizationUrl>https://www.contentstack.com/</organizationUrl> |
| 60 | + </developer> |
61 | 61 | </developers> |
62 | 62 |
|
63 | 63 | <distributionManagement> |
|
69 | 69 | <id>ossrh</id> |
70 | 70 | <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
71 | 71 | </repository> |
72 | | - <!-- <repository> |
73 | | - <id>github</id> |
74 | | - <name>GitHub Packages</name> |
75 | | - <url>https://maven.pkg.github.com/contentstack/contentstack-management-java</url> |
76 | | - </repository> --> |
77 | 72 | </distributionManagement> |
78 | 73 |
|
79 | 74 | <properties> |
|
91 | 86 | <converter-gson-version>2.9.0</converter-gson-version> |
92 | 87 | <logging.version>4.10.0</logging.version> |
93 | 88 | <jococo-plugin.version>0.8.5</jococo-plugin.version> |
94 | | - <lombok-source.version>1.18.26</lombok-source.version> |
| 89 | + <lombok-source.version>1.18.28</lombok-source.version> |
95 | 90 | <junit-jupiter.version>5.9.2</junit-jupiter.version> |
96 | 91 | <junit-jupiter-engine.version>5.8.0-M1</junit-jupiter-engine.version> |
97 | 92 | <junit-vintage-engine.version>5.9.2</junit-vintage-engine.version> |
|
172 | 167 | </dependency> |
173 | 168 | </dependencies> |
174 | 169 |
|
| 170 | + |
| 171 | + <profiles> |
| 172 | + <profile> |
| 173 | + <id>ossrhDeploy</id> |
| 174 | + <distributionManagement> |
| 175 | + <repository> |
| 176 | + <id>ossrh</id> |
| 177 | + <name>Central Repository OSSRH</name> |
| 178 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 179 | + </repository> |
| 180 | + <snapshotRepository> |
| 181 | + <id>ossrh</id> |
| 182 | + <name>Central Repository OSSRH</name> |
| 183 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 184 | + </snapshotRepository> |
| 185 | + </distributionManagement> |
| 186 | + <build> |
| 187 | + <plugins> |
| 188 | + <plugin> |
| 189 | + <groupId>org.sonatype.plugins</groupId> |
| 190 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 191 | + <version>1.6.13</version> |
| 192 | + <extensions>true</extensions> |
| 193 | + <configuration> |
| 194 | + <serverId>ossrh</serverId> |
| 195 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 196 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 197 | + </configuration> |
| 198 | + </plugin> |
| 199 | + <plugin> |
| 200 | + <groupId>org.apache.maven.plugins</groupId> |
| 201 | + <artifactId>maven-gpg-plugin</artifactId> |
| 202 | + <version>3.1.0</version> |
| 203 | + <executions> |
| 204 | + <execution> |
| 205 | + <id>sign-artifacts</id> |
| 206 | + <phase>verify</phase> |
| 207 | + <goals> |
| 208 | + <goal>sign</goal> |
| 209 | + </goals> |
| 210 | + <configuration> |
| 211 | + <gpgArguments> |
| 212 | + <arg>--pinentry-mode</arg> |
| 213 | + <arg>loopback</arg> |
| 214 | + </gpgArguments> |
| 215 | + </configuration> |
| 216 | + </execution> |
| 217 | + </executions> |
| 218 | + </plugin> |
| 219 | + </plugins> |
| 220 | + </build> |
| 221 | + </profile> |
| 222 | + <profile> |
| 223 | + <id>githubDeploy</id> |
| 224 | + <distributionManagement> |
| 225 | + <repository> |
| 226 | + <id>github</id> |
| 227 | + <name>GitHub cicirello Apache Maven Packages</name> |
| 228 | + <url>https://maven.pkg.github.com/contentstack/contentstack-management-java</url> |
| 229 | + </repository> |
| 230 | + </distributionManagement> |
| 231 | + </profile> |
| 232 | + <profile> |
| 233 | + <id>coverage</id> |
| 234 | + <build> |
| 235 | + <plugins> |
| 236 | + <plugin> |
| 237 | + <groupId>org.jacoco</groupId> |
| 238 | + <artifactId>jacoco-maven-plugin</artifactId> |
| 239 | + <version>0.8.10</version> |
| 240 | + <executions> |
| 241 | + <execution> |
| 242 | + <goals> |
| 243 | + <goal>prepare-agent</goal> |
| 244 | + </goals> |
| 245 | + </execution> |
| 246 | + <execution> |
| 247 | + <id>generate-code-coverage-report</id> |
| 248 | + <phase>test</phase> |
| 249 | + <goals> |
| 250 | + <goal>report</goal> |
| 251 | + </goals> |
| 252 | + </execution> |
| 253 | + </executions> |
| 254 | + </plugin> |
| 255 | + </plugins> |
| 256 | + </build> |
| 257 | + </profile> |
| 258 | + <profile> |
| 259 | + <id>refactor</id> |
| 260 | + <build> |
| 261 | + <plugins> |
| 262 | + <plugin> |
| 263 | + <groupId>org.hjug.refactorfirst.plugin</groupId> |
| 264 | + <artifactId>refactor-first-maven-plugin</artifactId> |
| 265 | + <version>0.3.0</version> |
| 266 | + <configuration> |
| 267 | + <showDetails>true</showDetails> |
| 268 | + </configuration> |
| 269 | + <executions> |
| 270 | + <execution> |
| 271 | + <id>refactor-first</id> |
| 272 | + <phase>test</phase> |
| 273 | + <goals> |
| 274 | + <goal>report</goal> |
| 275 | + </goals> |
| 276 | + </execution> |
| 277 | + </executions> |
| 278 | + </plugin> |
| 279 | + </plugins> |
| 280 | + </build> |
| 281 | + </profile> |
| 282 | + </profiles> |
| 283 | + |
| 284 | + |
175 | 285 | <build> |
176 | 286 | <plugins> |
177 | | - <!--mvn clean install -U -Dmaven.test.failure.ignore=true--> |
| 287 | + <!--mvn |
| 288 | + clean install -U -Dmaven.test.failure.ignore=true--> |
178 | 289 | <plugin> |
179 | 290 | <groupId>org.apache.maven.plugins</groupId> |
180 | 291 | <artifactId>maven-surefire-plugin</artifactId> |
|
217 | 328 | </executions> |
218 | 329 | </plugin> |
219 | 330 |
|
220 | | - <!-- -overview "/Users/shaileshmishra/Documents/Workspace/contentstack/java/contentstack-management-java/src/main/overview.html" -bottom "<b>Copyright © 2012-2022 Contentstack </b><sup>TM</sup>"--> |
| 331 | + <!-- -overview |
| 332 | + "/Users/shaileshmishra/Documents/Workspace/contentstack/java/contentstack-management-java/src/main/overview.html" |
| 333 | + -bottom "<b>Copyright © 2012-2022 Contentstack </b><sup>TM</sup>"--> |
221 | 334 | <plugin> |
222 | 335 | <groupId>org.apache.maven.plugins</groupId> |
223 | 336 | <artifactId>maven-javadoc-plugin</artifactId> |
|
334 | 447 | </goals> |
335 | 448 | </pluginExecutionFilter> |
336 | 449 | <action> |
337 | | - <ignore/> |
| 450 | + <ignore /> |
338 | 451 | </action> |
339 | 452 | </pluginExecution> |
340 | 453 | </pluginExecutions> |
|
0 commit comments