Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ochibooh committed Nov 9, 2020
1 parent d877264 commit f1d1be8
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 18 deletions.
25 changes: 12 additions & 13 deletions mpesa-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -95,50 +95,49 @@
<scope>test</scope>
</dependency>

<!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-api -->
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-api</artifactId>
<version>0.10.7</version>
<version>0.11.2</version>
</dependency>

<!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-impl -->
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-impl</artifactId>
<version>0.10.7</version>
<version>0.11.2</version>
<scope>runtime</scope>
</dependency>

<!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-jackson -->
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-jackson</artifactId>
<version>0.10.7</version>
<version>0.11.2</version>
<scope>runtime</scope>
</dependency>

<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.12.0-rc1</version>
</dependency>

<!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.11</version>
<version>1.15</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.10</version>
<version>1.18.16</version>
<scope>provided</scope>
</dependency>

<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.9</version>
<version>3.11</version>
</dependency>

<dependency>
Expand Down
4 changes: 2 additions & 2 deletions mpesa-demo/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ server.compression.min-response-size=2048
# logging config
logging.pattern.console=%date| %highlight(%-5level) | %magenta(%-30thread) | MPESA DEMO API | %-30.30logger{0} -%line |%msg%n
logging.pattern.file=%date| %-5level | %-30thread | MPESA DEMO API | %-30.30logger{0} -%line |%msg%n
logging.path=../logs
logging.file=${logging.path}/mpesa-test.log
logging.file.path=../logs
logging.file.name=${logging.file.path}/mpesa-test.log
logging.level.root=info
logging.file.max-size=500MB
logging.file.max-history=30
Expand Down
6 changes: 3 additions & 3 deletions mpesa/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,14 @@
<dependency>
<groupId>org.asynchttpclient</groupId>
<artifactId>async-http-client</artifactId>
<version>2.10.4</version>
<version>2.12.1</version>
</dependency>

<!-- https://mvnrepository.com/artifact/com.googlecode.libphonenumber/libphonenumber -->
<dependency>
<groupId>com.googlecode.libphonenumber</groupId>
<artifactId>libphonenumber</artifactId>
<version>8.11.1</version>
<version>8.12.12</version>
</dependency>

<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
Expand All @@ -66,7 +66,7 @@
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>1.64</version>
<version>1.67</version>
</dependency>
</dependencies>

Expand Down

0 comments on commit f1d1be8

Please sign in to comment.