Skip to content

Commit 62131ac

Browse files
shaileshmishrashaileshmishra
authored andcommitted
🎉 v0.1.0 release
1 parent 1a5e349 commit 62131ac

File tree

3 files changed

+84
-45
lines changed

3 files changed

+84
-45
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,3 @@ env:
66
global:
77
- CODECOV_TOKEN=:uuid-repo-token
88

9-

licence.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2012 - 2020 Contentstack
3+
Copyright (c) 2012 - 2021 Contentstack
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

pom.xml

Lines changed: 83 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
<modelVersion>4.0.0</modelVersion>
66

77
<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>
1010
<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>
1313
<url>https://www.***REMOVED***</url>
1414
<properties>
1515
<!-- package version -->
16-
<util.version>0.0.1-SNAPSHOT</util.version>
16+
<util.version>0.1.0-SNAPSHOT</util.version>
1717
<!-- UTF-8 -->
1818
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1919
<project.reporting.sourceEncoding>UTF-8</project.reporting.sourceEncoding>
@@ -54,6 +54,23 @@
5454
</repository>
5555
</distributionManagement>
5656

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+
5774
<dependencies>
5875
<dependency>
5976
<groupId>junit</groupId>
@@ -131,7 +148,6 @@
131148
# time-consuming stuff
132149
mvn surefire-report:report site -DgenerateReports=false
133150
-->
134-
135151
<plugin>
136152
<groupId>org.apache.maven.plugins</groupId>
137153
<artifactId>maven-surefire-report-plugin</artifactId>
@@ -146,10 +162,8 @@
146162
</executions>
147163
</plugin>
148164

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.-->
153167
<plugin>
154168
<groupId>org.apache.maven.plugins</groupId>
155169
<artifactId>maven-source-plugin</artifactId>
@@ -165,12 +179,38 @@
165179
</plugin>
166180

167181
<!--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+
168188
<plugin>
169189
<groupId>org.apache.maven.plugins</groupId>
170190
<artifactId>maven-javadoc-plugin</artifactId>
171191
<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>
172211
</plugin>
173212

213+
174214
<!--
175215
The Site Plugin is used to generate a site for the project.
176216
The generated site also includes the project's reports that were configured in the POM.
@@ -238,40 +278,40 @@
238278
</plugin>
239279

240280

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>-->
246286

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>-->
275315

276316
<plugin>
277317
<groupId>org.jetbrains.kotlin</groupId>

0 commit comments

Comments
 (0)