Skip to content

Commit 244a8e4

Browse files
Merge pull request #14 from contentstack/development
Development
2 parents 30fd6db + 5d33ee6 commit 244a8e4

File tree

2 files changed

+25
-10
lines changed

2 files changed

+25
-10
lines changed

pom.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Written manually.
2-
version=1.5.0
2+
version=1.5.1
33
groupId=com.contentstack.sdk
44
artifactId=java

pom.xml

Lines changed: 24 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
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>
65

6+
<modelVersion>4.0.0</modelVersion>
77
<groupId>com.contentstack.sdk</groupId>
88
<artifactId>java</artifactId>
9-
<version>1.5.0-SNAPSHOT</version>
9+
<version>1.5.1-SNAPSHOT</version>
1010
<packaging>jar</packaging>
1111

1212
<name>contentstack-java</name>
@@ -75,6 +75,8 @@
7575

7676
<properties>
7777
<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>
7880
</properties>
7981

8082

@@ -83,20 +85,33 @@
8385
<dependency>
8486
<groupId>junit</groupId>
8587
<artifactId>junit</artifactId>
86-
<version>4.12</version>
88+
<version>4.13</version>
8789
<scope>test</scope>
8890
</dependency>
8991

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 -->
9099
<dependency>
91100
<groupId>org.json</groupId>
92101
<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>
94109
</dependency>
95110

96111
<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>
100115
</dependency>
101116

102117
</dependencies>
@@ -178,8 +193,8 @@
178193
<artifactId>maven-compiler-plugin</artifactId>
179194
<version>3.8.0</version>
180195
<configuration>
181-
<source>8</source>
182-
<target>8</target>
196+
<source>1.8</source>
197+
<target>1.8</target>
183198
</configuration>
184199
</plugin>
185200

0 commit comments

Comments
 (0)