|
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 | | - <modelVersion>4.0.0</modelVersion> |
6 | 5 |
|
| 6 | + <modelVersion>4.0.0</modelVersion> |
7 | 7 | <groupId>com.contentstack.sdk</groupId> |
8 | 8 | <artifactId>java</artifactId> |
9 | | - <version>1.5.0-SNAPSHOT</version> |
| 9 | + <version>1.5.1-SNAPSHOT</version> |
10 | 10 | <packaging>jar</packaging> |
11 | 11 |
|
12 | 12 | <name>contentstack-java</name> |
|
75 | 75 |
|
76 | 76 | <properties> |
77 | 77 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 78 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 79 | + <maven.compiler.target>1.8</maven.compiler.target> |
78 | 80 | </properties> |
79 | 81 |
|
80 | 82 |
|
|
83 | 85 | <dependency> |
84 | 86 | <groupId>junit</groupId> |
85 | 87 | <artifactId>junit</artifactId> |
86 | | - <version>4.12</version> |
| 88 | + <version>4.13</version> |
87 | 89 | <scope>test</scope> |
88 | 90 | </dependency> |
89 | 91 |
|
| 92 | +<!-- <dependency>--> |
| 93 | +<!-- <groupId>org.json</groupId>--> |
| 94 | +<!-- <artifactId>json</artifactId>--> |
| 95 | +<!-- <version>20090211</version>--> |
| 96 | +<!-- </dependency>--> |
| 97 | + |
| 98 | + <!-- https://mvnrepository.com/artifact/org.json/json --> |
90 | 99 | <dependency> |
91 | 100 | <groupId>org.json</groupId> |
92 | 101 | <artifactId>json</artifactId> |
93 | | - <version>20090211</version> |
| 102 | + <version>20190722</version> |
| 103 | + </dependency> |
| 104 | + |
| 105 | + <dependency> |
| 106 | + <groupId>org.apache.logging.log4j</groupId> |
| 107 | + <artifactId>log4j-api</artifactId> |
| 108 | + <version>2.5</version> |
94 | 109 | </dependency> |
95 | 110 |
|
96 | 111 | <dependency> |
97 | | - <groupId>log4j</groupId> |
98 | | - <artifactId>log4j</artifactId> |
99 | | - <version>1.2.17</version> |
| 112 | + <groupId>org.apache.logging.log4j</groupId> |
| 113 | + <artifactId>log4j-core</artifactId> |
| 114 | + <version>2.5</version> |
100 | 115 | </dependency> |
101 | 116 |
|
102 | 117 | </dependencies> |
|
178 | 193 | <artifactId>maven-compiler-plugin</artifactId> |
179 | 194 | <version>3.8.0</version> |
180 | 195 | <configuration> |
181 | | - <source>8</source> |
182 | | - <target>8</target> |
| 196 | + <source>1.8</source> |
| 197 | + <target>1.8</target> |
183 | 198 | </configuration> |
184 | 199 | </plugin> |
185 | 200 |
|
|
0 commit comments