|
2 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0"
|
3 | 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
4 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
5 |
| - |
6 | 5 | <modelVersion>4.0.0</modelVersion>
|
| 6 | + |
7 | 7 | <groupId>com.contentstack.sdk</groupId>
|
8 | 8 | <artifactId>java</artifactId>
|
9 |
| - <version>1.2.0</version> |
10 |
| - <build> |
11 |
| - <plugins> |
12 |
| - <plugin> |
13 |
| - <groupId>org.apache.maven.plugins</groupId> |
14 |
| - <artifactId>maven-compiler-plugin</artifactId> |
15 |
| - <version>2.3.2</version> |
16 |
| - <configuration> |
17 |
| - <source>8</source> |
18 |
| - <target>8</target> |
19 |
| - </configuration> |
20 |
| - </plugin> |
21 |
| - </plugins> |
22 |
| - </build> |
| 9 | + <version>1.2.1-SNAPSHOT</version> |
23 | 10 | <packaging>jar</packaging>
|
24 | 11 |
|
25 |
| - |
26 | 12 | <name>contentstack-java</name>
|
27 | 13 | <description>Java SDK for Contentstack Content Delivery API, Contentstack is a headless CMS with an API-first approach</description>
|
28 |
| - <url>http://www.contentstack.com/</url> |
29 |
| - |
| 14 | + <url>https://github.com/contentstack/contentstack-java/</url> |
30 | 15 |
|
31 | 16 | <licenses>
|
32 | 17 | <license>
|
|
35 | 20 | </license>
|
36 | 21 | </licenses>
|
37 | 22 |
|
38 |
| - |
39 |
| - <scm> |
40 |
| - <connection>scm:git:git://github.com/contentstack/contentstack-java.git</connection> |
41 |
| - <developerConnection>scm:git:ssh://github.com/contentstack/contentstack-java.git</developerConnection> |
42 |
| - <url>https://github.com/contentstack/contentstack-java</url> |
43 |
| - </scm> |
44 |
| - |
45 | 23 | <developers>
|
46 | 24 | <developer>
|
47 |
| - <name>contentstack</name> |
48 |
| - <email>mobile@contentstack.com</email> |
49 |
| - <organization>contentstack</organization> |
| 25 | + <name>Shailesh Mishra</name> |
| 26 | + <email>mshaileshr@gmail.com</email> |
| 27 | + <organization>Contentstack</organization> |
50 | 28 | <organizationUrl>https://www.contentstack.com/</organizationUrl>
|
51 | 29 | </developer>
|
52 | 30 | </developers>
|
53 | 31 |
|
54 | 32 |
|
| 33 | + <scm> |
| 34 | + <url>https://github.com/contentstack/contentstack-java/tree/master</url> |
| 35 | + <connection>scm:git:git://github.com/contentstack/contentstack-java.git</connection> |
| 36 | + <developerConnection>scm:git:ssh://github.com:contentstack/contentstack-java.git</developerConnection> |
| 37 | + <tag>v@{project.version}</tag> |
| 38 | + </scm> |
| 39 | + |
| 40 | + <issueManagement> |
| 41 | + <system>GitHub Issues</system> |
| 42 | + <url>https://github.com/contentstack/contentstack-java/issues</url> |
| 43 | + </issueManagement> |
| 44 | + |
| 45 | + |
| 46 | + <organization> |
| 47 | + <name>Contentstack</name> |
| 48 | + <url>https://www.contentstack.com</url> |
| 49 | + </organization> |
| 50 | + |
| 51 | + |
55 | 52 | <distributionManagement>
|
56 | 53 | <snapshotRepository>
|
57 | 54 | <id>ossrh</id>
|
|
64 | 61 | </distributionManagement>
|
65 | 62 |
|
66 | 63 |
|
67 |
| - <repositories> |
68 |
| - <repository> |
69 |
| - <id>contentstack</id> |
70 |
| - <name>contentstack</name> |
71 |
| - <url>http://www.contentstack.com</url> |
72 |
| - </repository> |
73 |
| - <repository> |
74 |
| - <id>contentstack-java</id> |
75 |
| - <name>contentstack-java</name> |
76 |
| - <url>https://github.com/contentstack/contentstack-java</url> |
77 |
| - </repository> |
78 |
| - </repositories> |
79 |
| - |
80 |
| - |
81 | 64 | <properties>
|
82 | 65 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
83 | 66 | </properties>
|
84 | 67 |
|
85 | 68 |
|
86 |
| - <profiles> |
87 |
| - <profile> |
88 |
| - <id>release</id> |
89 |
| - <build> |
90 |
| - <plugins> |
91 |
| - <plugin> |
92 |
| - <groupId>org.apache.maven.plugins</groupId> |
93 |
| - <artifactId>maven-source-plugin</artifactId> |
94 |
| - <version>2.2.1</version> |
95 |
| - <executions> |
96 |
| - <execution> |
97 |
| - <id>attach-sources</id> |
98 |
| - <goals> |
99 |
| - <goal>jar-no-fork</goal> |
100 |
| - </goals> |
101 |
| - </execution> |
102 |
| - </executions> |
103 |
| - </plugin> |
104 |
| - <plugin> |
105 |
| - <groupId>org.apache.maven.plugins</groupId> |
106 |
| - <artifactId>maven-javadoc-plugin</artifactId> |
107 |
| - <version>2.9.1</version> |
108 |
| - <executions> |
109 |
| - <execution> |
110 |
| - <id>attach-javadocs</id> |
111 |
| - <goals> |
112 |
| - <goal>jar</goal> |
113 |
| - </goals> |
114 |
| - </execution> |
115 |
| - </executions> |
116 |
| - </plugin> |
117 |
| - <plugin> |
118 |
| - <groupId>org.apache.maven.plugins</groupId> |
119 |
| - <artifactId>maven-gpg-plugin</artifactId> |
120 |
| - <version>1.5</version> |
121 |
| - <executions> |
122 |
| - <execution> |
123 |
| - <id>sign-artifacts</id> |
124 |
| - <phase>verify</phase> |
125 |
| - <goals> |
126 |
| - <goal>sign</goal> |
127 |
| - </goals> |
128 |
| - </execution> |
129 |
| - </executions> |
130 |
| - </plugin> |
131 |
| - <plugin> |
132 |
| - <groupId>org.apache.maven.plugins</groupId> |
133 |
| - <artifactId>maven-compiler-plugin</artifactId> |
134 |
| - <version>3.6.1</version> |
135 |
| - <configuration> |
136 |
| - <source>8</source> |
137 |
| - <target>8</target> |
138 |
| - </configuration> |
139 |
| - </plugin> |
140 |
| - <plugin> |
141 |
| - <groupId>org.apache.maven.plugins</groupId> |
142 |
| - <artifactId>maven-release-plugin</artifactId> |
143 |
| - <version>2.5.3</version> |
144 |
| - <configuration> |
145 |
| - <autoVersionSubmodules>true</autoVersionSubmodules> |
146 |
| - <useReleaseProfile>false</useReleaseProfile> |
147 |
| - <releaseProfiles>release</releaseProfiles> |
148 |
| - <goals>deploy</goals> |
149 |
| - </configuration> |
150 |
| - </plugin> |
151 |
| - |
152 |
| - <plugin> |
153 |
| - <groupId>org.sonatype.plugins</groupId> |
154 |
| - <artifactId>nexus-staging-maven-plugin</artifactId> |
155 |
| - <version>1.6.8</version> |
156 |
| - <extensions>true</extensions> |
157 |
| - <configuration> |
158 |
| - <serverId>ossrh</serverId> |
159 |
| - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
160 |
| - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
161 |
| - </configuration> |
162 |
| - </plugin> |
163 |
| - </plugins> |
164 |
| - </build> |
165 |
| - </profile> |
166 |
| - </profiles> |
167 |
| - |
168 | 69 | <dependencies>
|
169 |
| - |
170 | 70 | <dependency>
|
171 | 71 | <groupId>junit</groupId>
|
172 | 72 | <artifactId>junit</artifactId>
|
173 | 73 | <version>4.12</version>
|
174 | 74 | <scope>test</scope>
|
175 | 75 | </dependency>
|
| 76 | + |
176 | 77 | <dependency>
|
177 | 78 | <groupId>org.json</groupId>
|
178 | 79 | <artifactId>json</artifactId>
|
179 |
| - <version>20131018</version> |
| 80 | + <version>20090211</version> |
180 | 81 | </dependency>
|
181 | 82 |
|
182 | 83 | </dependencies>
|
183 | 84 |
|
| 85 | + <build> |
| 86 | + <plugins> |
| 87 | + <plugin> |
| 88 | + <groupId>org.apache.maven.plugins</groupId> |
| 89 | + <artifactId>maven-source-plugin</artifactId> |
| 90 | + <version>2.2.1</version> |
| 91 | + <executions> |
| 92 | + <execution> |
| 93 | + <id>attach-sources</id> |
| 94 | + <goals> |
| 95 | + <goal>jar-no-fork</goal> |
| 96 | + </goals> |
| 97 | + </execution> |
| 98 | + </executions> |
| 99 | + </plugin> |
| 100 | + <plugin> |
| 101 | + <groupId>org.apache.maven.plugins</groupId> |
| 102 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 103 | + <version>2.9.1</version> |
| 104 | + <executions> |
| 105 | + <execution> |
| 106 | + <id>attach-javadocs</id> |
| 107 | + <goals> |
| 108 | + <goal>jar</goal> |
| 109 | + </goals> |
| 110 | + </execution> |
| 111 | + </executions> |
| 112 | + </plugin> |
| 113 | + |
| 114 | + <plugin> |
| 115 | + <groupId>org.apache.maven.plugins</groupId> |
| 116 | + <artifactId>maven-gpg-plugin</artifactId> |
| 117 | + <version>1.5</version> |
| 118 | + <executions> |
| 119 | + <execution> |
| 120 | + <id>sign-artifacts</id> |
| 121 | + <phase>verify</phase> |
| 122 | + <goals> |
| 123 | + <goal>sign</goal> |
| 124 | + </goals> |
| 125 | + </execution> |
| 126 | + </executions> |
| 127 | + </plugin> |
| 128 | + |
| 129 | + <plugin> |
| 130 | + <groupId>org.apache.maven.plugins</groupId> |
| 131 | + <artifactId>maven-compiler-plugin</artifactId> |
| 132 | + <version>3.8.0</version> |
| 133 | + <configuration> |
| 134 | + <source>8</source> |
| 135 | + <target>8</target> |
| 136 | + </configuration> |
| 137 | + </plugin> |
| 138 | + |
| 139 | + <plugin> |
| 140 | + <groupId>org.sonatype.plugins</groupId> |
| 141 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 142 | + <version>1.6.7</version> |
| 143 | + <extensions>true</extensions> |
| 144 | + <configuration> |
| 145 | + <serverId>ossrh</serverId> |
| 146 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 147 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 148 | + </configuration> |
| 149 | + </plugin> |
| 150 | + |
| 151 | + <plugin> |
| 152 | + <groupId>org.apache.maven.plugins</groupId> |
| 153 | + <artifactId>maven-release-plugin</artifactId> |
| 154 | + <version>2.5.3</version> |
| 155 | + <configuration> |
| 156 | + <autoVersionSubmodules>true</autoVersionSubmodules> |
| 157 | + <useReleaseProfile>false</useReleaseProfile> |
| 158 | + <releaseProfiles>release</releaseProfiles> |
| 159 | + <goals>deploy</goals> |
| 160 | + </configuration> |
| 161 | + </plugin> |
| 162 | + </plugins> |
| 163 | + </build> |
| 164 | + |
184 | 165 | </project>
|
0 commit comments