|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" |
3 | | - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 | 4 |
|
6 | 5 | <modelVersion>4.0.0</modelVersion> |
7 | 6 | <groupId>com.contentstack.sdk</groupId> |
8 | 7 | <artifactId>java</artifactId> |
9 | | - <version>1.8.0-SNAPSHOT</version> |
| 8 | + <version>${sdk.version.release}</version> |
10 | 9 | <packaging>jar</packaging> |
11 | 10 | <name>contentstack-java</name> |
12 | 11 | <description>Java SDK for Contentstack Content Delivery API</description> |
|
15 | 14 |
|
16 | 15 | <properties> |
17 | 16 | <!--update sdk version before every release push for SNAPSHOT/RELEASE--> |
18 | | - <sdk.version.snapshot>v1.8.0</sdk.version.snapshot> |
19 | | - <sdk.version.release>v1.8.0</sdk.version.release> |
| 17 | + <sdk.version.snapshot>1.8.1-SNAPSHOT</sdk.version.snapshot> |
| 18 | + <sdk.version.release>1.8.1</sdk.version.release> |
20 | 19 | <maven.compiler.target>1.8</maven.compiler.target> |
21 | 20 | <maven.compiler.source>1.8</maven.compiler.source> |
22 | 21 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
23 | 22 | <surefire-report-plugin.version>2.22.0</surefire-report-plugin.version> |
24 | 23 | <maven-source-plugin.version>2.2.1</maven-source-plugin.version> |
25 | 24 | <maven-javadoc-plugin.version>3.0.0</maven-javadoc-plugin.version> |
26 | 25 | <dotenv-source.version>5.2.2</dotenv-source.version> |
27 | | - <rxjava-source.version>3.1.2</rxjava-source.version> |
| 26 | + <rxjava-source.version>3.1.3</rxjava-source.version> |
28 | 27 | <retrofit-source.version>2.9.0</retrofit-source.version> |
29 | 28 | <converter-gson-source.version>2.9.0</converter-gson-source.version> |
30 | | - <loggin.version>4.9.2</loggin.version> |
| 29 | + <loggin.version>4.9.3</loggin.version> |
31 | 30 | <jococo-plugin.version>0.8.5</jococo-plugin.version> |
32 | 31 | <lombok-source.version>1.18.22</lombok-source.version> |
33 | | - <junit-jupiter.version>5.8.1</junit-jupiter.version> |
| 32 | + <junit-jupiter.version>5.8.2</junit-jupiter.version> |
34 | 33 | <junit-jupiter-engine.version>5.8.0-M1</junit-jupiter-engine.version> |
35 | | - <junit-vintage-engine.version>5.8.1</junit-vintage-engine.version> |
| 34 | + <junit-vintage-engine.version>5.8.2</junit-vintage-engine.version> |
36 | 35 | <gson.version>2.8.8</gson.version> |
37 | 36 | <json-simple-version>1.1.1</json-simple-version> |
38 | 37 | <maven-site-plugin.version>3.3</maven-site-plugin.version> |
|
57 | 56 | <url>https://github.com/contentstack/contentstack-java</url> |
58 | 57 | <connection>scm:git:git://github.com/contentstack/contentstack-java.git</connection> |
59 | 58 | <developerConnection>scm:git:ssh://github.com:contentstack/contentstack-java.git</developerConnection> |
60 | | - <tag>HEAD</tag> |
| 59 | + <tag>java-1.8.0</tag> |
61 | 60 | </scm> |
62 | 61 |
|
63 | 62 | <issueManagement> |
|
106 | 105 |
|
107 | 106 |
|
108 | 107 | <dependencies> |
109 | | -<!-- <dependency>--> |
110 | | -<!-- <groupId>com.contentstack.sdk</groupId>--> |
111 | | -<!-- <artifactId>utils</artifactId>--> |
112 | | -<!-- <version>${contentstack-utils-version}</version>--> |
113 | | -<!-- </dependency>--> |
| 108 | + <dependency> |
| 109 | + <groupId>com.contentstack.sdk</groupId> |
| 110 | + <artifactId>utils</artifactId> |
| 111 | + <version>${contentstack-utils-version}</version> |
| 112 | + <scope>compile</scope> |
| 113 | + </dependency> |
114 | 114 | <dependency> |
115 | 115 | <groupId>org.json</groupId> |
116 | 116 | <artifactId>json</artifactId> |
117 | 117 | <version>${json-version}</version> |
| 118 | + <scope>compile</scope> |
118 | 119 | </dependency> |
119 | 120 | <dependency> |
120 | 121 | <groupId>io.github.cdimascio</groupId> |
121 | 122 | <artifactId>java-dotenv</artifactId> |
122 | 123 | <version>${dotenv-source.version}</version> |
| 124 | + <scope>runtime</scope> |
123 | 125 | </dependency> |
124 | 126 | <dependency> |
125 | 127 | <groupId>io.reactivex.rxjava3</groupId> |
126 | 128 | <artifactId>rxjava</artifactId> |
127 | 129 | <version>${rxjava-source.version}</version> |
| 130 | + <scope>compile</scope> |
128 | 131 | </dependency> |
129 | 132 | <dependency> |
130 | 133 | <groupId>com.squareup.retrofit2</groupId> |
131 | 134 | <artifactId>retrofit</artifactId> |
132 | 135 | <version>${retrofit-source.version}</version> |
| 136 | + <scope>compile</scope> |
133 | 137 | </dependency> |
134 | 138 | <dependency> |
135 | 139 | <groupId>com.squareup.retrofit2</groupId> |
136 | 140 | <artifactId>converter-gson</artifactId> |
137 | 141 | <version>${converter-gson-source.version}</version> |
| 142 | + <scope>compile</scope> |
138 | 143 | </dependency> |
139 | 144 | <dependency> |
140 | 145 | <groupId>com.squareup.okhttp3</groupId> |
141 | 146 | <artifactId>logging-interceptor</artifactId> |
142 | 147 | <version>${loggin.version}</version> |
| 148 | + <scope>compile</scope> |
143 | 149 | </dependency> |
144 | 150 | <dependency> |
145 | 151 | <groupId>org.projectlombok</groupId> |
146 | 152 | <artifactId>lombok</artifactId> |
147 | 153 | <version>${lombok-source.version}</version> |
| 154 | + <scope>compile</scope> |
148 | 155 | </dependency> |
149 | 156 | <!--JUnit 5 requires Java 8, you should make sure you have it ready in your environment.--> |
150 | 157 | <dependency> |
|
157 | 164 | <groupId>org.junit.vintage</groupId> |
158 | 165 | <artifactId>junit-vintage-engine</artifactId> |
159 | 166 | <version>${junit-vintage-engine.version}</version> |
| 167 | + <scope>test</scope> |
160 | 168 | </dependency> |
161 | 169 |
|
162 | 170 | <dependency> |
163 | 171 | <groupId>com.googlecode.json-simple</groupId> |
164 | 172 | <artifactId>json-simple</artifactId> |
165 | 173 | <version>${json-simple-version}</version> |
| 174 | + <scope>compile</scope> |
166 | 175 | </dependency> |
167 | 176 | </dependencies> |
168 | 177 |
|
|
0 commit comments