|
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 |
|
7 | 7 | <groupId>com.contentstack.sdk</groupId> |
8 | | - <artifactId>util</artifactId> |
9 | | - <version>0.0.1-SNAPSHOT</version> |
| 8 | + <artifactId>utils</artifactId> |
| 9 | + <version>0.1.0</version> |
10 | 10 | <packaging>jar</packaging> |
11 | | - |
12 | | - <name>Contentstack-util</name> |
| 11 | + <name>Contentstack-utils</name> |
| 12 | + <description>Java Utils SDK for Contentstack Content Delivery API, Contentstack is a headless CMS with an API-first approach</description> |
13 | 13 | <url>https://www.***REMOVED***</url> |
14 | 14 | <properties> |
15 | 15 | <!-- package version --> |
16 | | - <util.version>0.0.1-SNAPSHOT</util.version> |
| 16 | + <util.version>0.1.0-SNAPSHOT</util.version> |
17 | 17 | <!-- UTF-8 --> |
18 | 18 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
19 | 19 | <project.reporting.sourceEncoding>UTF-8</project.reporting.sourceEncoding> |
|
54 | 54 | </repository> |
55 | 55 | </distributionManagement> |
56 | 56 |
|
| 57 | + <scm> |
| 58 | + <url>https://github.com/contentstack/contentstack-utils-java</url> |
| 59 | + <connection>git@github.com:contentstack/contentstack-utils-java.git</connection> |
| 60 | + <developerConnection>scm:git:ssh://github.com:contentstack/contentstack-utils-java.git</developerConnection> |
| 61 | + <tag>HEAD</tag> |
| 62 | + </scm> |
| 63 | + |
| 64 | + <issueManagement> |
| 65 | + <system>GitHub Issues</system> |
| 66 | + <url>http://github.com/contentstack/contentstack-utils-java/issues</url> |
| 67 | + </issueManagement> |
| 68 | + |
| 69 | + <organization> |
| 70 | + <name>Contentstack.</name> |
| 71 | + <url>http://***REMOVED***</url> |
| 72 | + </organization> |
| 73 | + |
57 | 74 | <dependencies> |
58 | 75 | <dependency> |
59 | 76 | <groupId>junit</groupId> |
|
131 | 148 | # time-consuming stuff |
132 | 149 | mvn surefire-report:report site -DgenerateReports=false |
133 | 150 | --> |
134 | | - |
135 | 151 | <plugin> |
136 | 152 | <groupId>org.apache.maven.plugins</groupId> |
137 | 153 | <artifactId>maven-surefire-report-plugin</artifactId> |
|
146 | 162 | </executions> |
147 | 163 | </plugin> |
148 | 164 |
|
149 | | - <!-- |
150 | | - The Source Plugin creates a jar archive of the source files of |
151 | | - the current project. The jar file is, by default, created in the project's target directory. |
152 | | - --> |
| 165 | + <!--The Source Plugin creates a jar archive of the source files of |
| 166 | + the current project. The jar file is, by default, created in the project's target directory.--> |
153 | 167 | <plugin> |
154 | 168 | <groupId>org.apache.maven.plugins</groupId> |
155 | 169 | <artifactId>maven-source-plugin</artifactId> |
|
165 | 179 | </plugin> |
166 | 180 |
|
167 | 181 | <!--The Javadoc Plugin uses the Javadoc tool to generate javadocs for the specified project--> |
| 182 | +<!-- <plugin>--> |
| 183 | +<!-- <groupId>org.apache.maven.plugins</groupId>--> |
| 184 | +<!-- <artifactId>maven-javadoc-plugin</artifactId>--> |
| 185 | +<!-- <version>${maven-javadoc-plugin.version}</version>--> |
| 186 | +<!-- </plugin>--> |
| 187 | + |
168 | 188 | <plugin> |
169 | 189 | <groupId>org.apache.maven.plugins</groupId> |
170 | 190 | <artifactId>maven-javadoc-plugin</artifactId> |
171 | 191 | <version>${maven-javadoc-plugin.version}</version> |
| 192 | + <executions> |
| 193 | + <execution> |
| 194 | + <id>attach-javadocs</id> |
| 195 | + <goals> |
| 196 | + <goal>jar</goal> |
| 197 | + </goals> |
| 198 | + <configuration> |
| 199 | + <additionalOptions>-Xdoclint:none</additionalOptions> |
| 200 | + <use>false</use> |
| 201 | + <use>false</use> |
| 202 | + <source>1.8</source> |
| 203 | + <links> |
| 204 | + <link>http://docs.oracle.com/javase/8/docs/api/</link> |
| 205 | + <link>http://docs.oracle.com/javase/8/docs/api/</link> |
| 206 | + </links> |
| 207 | + <doclint>none</doclint> |
| 208 | + </configuration> |
| 209 | + </execution> |
| 210 | + </executions> |
172 | 211 | </plugin> |
173 | 212 |
|
| 213 | + |
174 | 214 | <!-- |
175 | 215 | The Site Plugin is used to generate a site for the project. |
176 | 216 | The generated site also includes the project's reports that were configured in the POM. |
|
238 | 278 | </plugin> |
239 | 279 |
|
240 | 280 |
|
241 | | - <plugin> |
242 | | - <groupId>org.jacoco</groupId> |
243 | | - <artifactId>jacoco-maven-plugin</artifactId> |
244 | | - <version>0.8.5</version> |
245 | | - </plugin> |
| 281 | +<!-- <plugin>--> |
| 282 | +<!-- <groupId>org.jacoco</groupId>--> |
| 283 | +<!-- <artifactId>jacoco-maven-plugin</artifactId>--> |
| 284 | +<!-- <version>0.8.5</version>--> |
| 285 | +<!-- </plugin>--> |
246 | 286 |
|
247 | | - <plugin> |
248 | | - <groupId>org.apache.maven.plugins</groupId> |
249 | | - <artifactId>maven-compiler-plugin</artifactId> |
250 | | - <version>3.8.0</version> |
251 | | - <executions> |
252 | | - <execution> |
253 | | - <id>compile</id> |
254 | | - <phase>compile</phase> |
255 | | - <goals> |
256 | | - <goal>compile</goal> |
257 | | - </goals> |
258 | | - </execution> |
259 | | - <execution> |
260 | | - <id>testCompile</id> |
261 | | - <phase>test-compile</phase> |
262 | | - <goals> |
263 | | - <goal>testCompile</goal> |
264 | | - </goals> |
265 | | - </execution> |
266 | | - </executions> |
267 | | - <configuration> |
268 | | - <source>${java.version}</source> |
269 | | - <target>${java.version}</target> |
270 | | - <compilerArgument>-Xlint:all</compilerArgument> |
271 | | - <showWarnings>true</showWarnings> |
272 | | - <showDeprecation>true</showDeprecation> |
273 | | - </configuration> |
274 | | - </plugin> |
| 287 | +<!-- <plugin>--> |
| 288 | +<!-- <groupId>org.apache.maven.plugins</groupId>--> |
| 289 | +<!-- <artifactId>maven-compiler-plugin</artifactId>--> |
| 290 | +<!-- <version>3.8.0</version>--> |
| 291 | +<!-- <executions>--> |
| 292 | +<!-- <execution>--> |
| 293 | +<!-- <id>compile</id>--> |
| 294 | +<!-- <phase>compile</phase>--> |
| 295 | +<!-- <goals>--> |
| 296 | +<!-- <goal>compile</goal>--> |
| 297 | +<!-- </goals>--> |
| 298 | +<!-- </execution>--> |
| 299 | +<!-- <execution>--> |
| 300 | +<!-- <id>testCompile</id>--> |
| 301 | +<!-- <phase>test-compile</phase>--> |
| 302 | +<!-- <goals>--> |
| 303 | +<!-- <goal>testCompile</goal>--> |
| 304 | +<!-- </goals>--> |
| 305 | +<!-- </execution>--> |
| 306 | +<!-- </executions>--> |
| 307 | +<!-- <configuration>--> |
| 308 | +<!-- <source>${java.version}</source>--> |
| 309 | +<!-- <target>${java.version}</target>--> |
| 310 | +<!-- <compilerArgument>-Xlint:all</compilerArgument>--> |
| 311 | +<!-- <showWarnings>true</showWarnings>--> |
| 312 | +<!-- <showDeprecation>true</showDeprecation>--> |
| 313 | +<!-- </configuration>--> |
| 314 | +<!-- </plugin>--> |
275 | 315 |
|
276 | 316 | <plugin> |
277 | 317 | <groupId>org.jetbrains.kotlin</groupId> |
|
0 commit comments