|
54 | 54 |
|
55 | 55 | <issueManagement> |
56 | 56 | <system>GitHub Issues</system> |
57 | | - <url>http://github.com/contentstack/contentstack-java/issues</url> |
| 57 | + <url>https://github.com/contentstack/contentstack-java/issues</url> |
58 | 58 | </issueManagement> |
59 | 59 |
|
60 | 60 | <licenses> |
61 | 61 | <license> |
62 | 62 | <name>MIT</name> |
63 | | - <url>http://www.opensource.org/licenses/mit-license.php</url> |
| 63 | + <url>https://www.opensource.org/licenses/mit-license.php</url> |
64 | 64 | </license> |
65 | 65 | </licenses> |
66 | 66 |
|
67 | 67 | <organization> |
68 | | - <name>Contentstack.</name> |
69 | | - <url>http://contentstack.com</url> |
| 68 | + <name>Contentstack</name> |
| 69 | + <url>https://contentstack.com</url> |
70 | 70 | </organization> |
71 | 71 |
|
72 | 72 | <developers> |
|
94 | 94 | </snapshotRepository> |
95 | 95 |
|
96 | 96 | <!--GitHub Packages--> |
97 | | - <!-- <repository>--> |
98 | | - <!-- <id>github</id>--> |
99 | | - <!-- <url>https://maven.pkg.github.com/contentstack/contentstack-java</url>--> |
100 | | - <!-- </repository>--> |
101 | | - |
102 | | - <!-- Maven Release Repository--> |
| 97 | + <!-- <repository>--> |
| 98 | + <!-- <id>github</id>--> |
| 99 | + <!-- <url>https://maven.pkg.github.com/contentstack/contentstack-java</url>--> |
| 100 | + <!-- </repository>--> |
| 101 | + <!--Maven Release Repository--> |
103 | 102 | <repository> |
104 | 103 | <id>ossrh</id> |
105 | 104 | <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
|
127 | 126 | <groupId>io.github.cdimascio</groupId> |
128 | 127 | <artifactId>dotenv-java</artifactId> |
129 | 128 | <version>${dotenv-source.version}</version> |
130 | | - <!-- <scope>runtime</scope>--> |
| 129 | + <!--<scope>runtime</scope>--> |
131 | 130 | </dependency> |
132 | 131 |
|
133 | 132 | <dependency> |
|
185 | 184 | </dependency> |
186 | 185 | </dependencies> |
187 | 186 |
|
| 187 | + <build> |
188 | 188 |
|
189 | | - <profiles> |
190 | | - <profile> |
191 | | - <id>release-sign-artifacts</id> |
192 | | - <activation> |
193 | | - <property> |
194 | | - <name>performRelease</name> |
195 | | - <value>true</value> |
196 | | - </property> |
197 | | - </activation> |
198 | | - <build> |
199 | | - <plugins> |
200 | | - <plugin> |
201 | | - <groupId>org.apache.maven.plugins</groupId> |
202 | | - <artifactId>maven-gpg-plugin</artifactId> |
203 | | - <version>${maven-gpg-plugin.version}</version> |
204 | | - <executions> |
205 | | - <execution> |
206 | | - <id>sign-artifacts</id> |
207 | | - <phase>verify</phase> |
208 | | - <goals> |
209 | | - <goal>sign</goal> |
210 | | - </goals> |
211 | | - </execution> |
212 | | - </executions> |
213 | | - </plugin> |
214 | | - </plugins> |
215 | | - </build> |
216 | | - </profile> |
217 | | - </profiles> |
218 | 189 |
|
219 | | - <build> |
220 | 190 | <plugins> |
221 | 191 | <!-- |
222 | 192 | # Run tests and generate .xml reports |
|
241 | 211 | </executions> |
242 | 212 | </plugin> |
243 | 213 | <!--Generate overview.html file--> |
244 | | - <!-- -overview "/Users/shaileshmishra/Documents/workspace/contentstack/javaspace/contentstack-java/src/main/overview.html" -bottom "<b>Copyright © 2012-2023 Contentstack </b><sup>TM</sup>" --> |
| 214 | + <!--overview "/Users/shaileshmishra/Documents/workspace/contentstack/workspace/GitHub/contentstack-java/src/main/overview.html" -bottom "<b>Copyright © 2012-2023 Contentstack </b><sup>TM</sup>" --> |
245 | 215 | <plugin> |
246 | 216 | <groupId>org.apache.maven.plugins</groupId> |
247 | 217 | <artifactId>maven-javadoc-plugin</artifactId> |
|
260 | 230 | <use>false</use> |
261 | 231 | <source>1.8</source> |
262 | 232 | <links> |
263 | | - <link>http://docs.oracle.com/javase/7/docs/api/</link> |
264 | | - <link>http://docs.oracle.com/javase/7/docs/api/</link> |
| 233 | + <link>https://docs.oracle.com/javase/7/docs/api/</link> |
| 234 | + <link>https://docs.oracle.com/javase/7/docs/api/</link> |
265 | 235 | </links> |
266 | 236 | <doclint>none</doclint> |
267 | 237 | </configuration> |
268 | 238 | </execution> |
269 | 239 | </executions> |
270 | 240 | </plugin> |
| 241 | + |
| 242 | + <plugin> |
| 243 | + <groupId>org.apache.maven.plugins</groupId> |
| 244 | + <artifactId>maven-surefire-plugin</artifactId> |
| 245 | + <version>2.22.2</version> |
| 246 | + <configuration> |
| 247 | + <skipTests>true</skipTests> |
| 248 | + </configuration> |
| 249 | + </plugin> |
| 250 | + |
271 | 251 | <plugin> |
272 | 252 | <groupId>org.apache.maven.plugins</groupId> |
273 | 253 | <artifactId>maven-site-plugin</artifactId> |
|
278 | 258 | <artifactId>maven-enforcer-plugin</artifactId> |
279 | 259 | <version>3.0.0-M2</version> |
280 | 260 | </plugin> |
281 | | - <!-- <plugin>--> |
282 | | - <!-- <groupId>org.apache.maven.plugins</groupId>--> |
283 | | - <!-- <artifactId>maven-gpg-plugin</artifactId>--> |
284 | | - <!-- <version>1.6</version>--> |
285 | | - <!-- <executions>--> |
286 | | - <!-- <execution>--> |
287 | | - <!-- <id>sign-artifacts</id>--> |
288 | | - <!-- <phase>verify</phase>--> |
289 | | - <!-- <goals>--> |
290 | | - <!-- <goal>sign</goal>--> |
291 | | - <!-- </goals>--> |
292 | | - <!-- </execution>--> |
293 | | - <!-- </executions>--> |
294 | | - <!-- </plugin>--> |
| 261 | + <plugin> |
| 262 | + <groupId>org.apache.maven.plugins</groupId> |
| 263 | + <artifactId>maven-gpg-plugin</artifactId> |
| 264 | + <version>1.6</version> |
| 265 | + <executions> |
| 266 | + <execution> |
| 267 | + <id>sign-artifacts</id> |
| 268 | + <phase>verify</phase> |
| 269 | + <goals> |
| 270 | + <goal>sign</goal> |
| 271 | + </goals> |
| 272 | + </execution> |
| 273 | + </executions> |
| 274 | + </plugin> |
295 | 275 | <plugin> |
296 | 276 | <groupId>org.apache.maven.plugins</groupId> |
297 | 277 | <artifactId>maven-compiler-plugin</artifactId> |
|
0 commit comments