Skip to content

Commit

Permalink
Update parser library dependencies and parser library version (#150)
Browse files Browse the repository at this point in the history
* update and rename slf4j-log4j12(slf4j-reload4j) to 1.7.35; update slf4j-api

* fix mac build; add surefire plugin to run existing tests with mvn

* update other dependencies

* remove surefire-plugin

* update and rename slf4j-log4j12(slf4j-reload4j) to 1.7.35; update slf4j-api

* update other dependencies
  • Loading branch information
niyatim23 authored Jan 28, 2022
1 parent 1dd1f88 commit 68f8058
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 27 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,19 @@ To run the sample follow the below steps:

## Release Notes

### Release 1.2.2 (Jan 2022)
* Update slf4j-reload4j(slf4j-log4j12) and slf4j-api from 1.7.33 to 1.7.35
* Update amazon-kinesis-client from 1.9.3 to 1.14.7
* Update aws-lambda-java-core from 1.2.0 to 1.2.1
* Update junit from 4.13.1 to 4.13.2
* Update lombok from 1.18.16 to 1.18.22
* Update commons-lang3 from 3.6 to 3.12.0
* Update powermock-mockito-release-full from 1.6.3 to 1.6.4
* Update maven-compiler-plugin from 3.2 to 3.9.0
* Update lombok-maven-plugin from 1.18.16.0 to 1.18.20.0
* Update maven-javadoc-plugin from 3.1.1 to 3.3.1
* Update maven-source-plugin from 3.0.1 to 3.2.1
* Update maven-shade-plugin from 2.3 to 3.2.4

### Release 1.2.1 (Jan 2022)
* Update slf4j-log4j12 and slf4j-api from 1.7.25 to 1.7.33
Expand Down
54 changes: 27 additions & 27 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<artifactId>amazon-kinesis-video-streams-parser-library</artifactId>
<packaging>jar</packaging>
<name>Amazon Kinesis Video Streams Parser Library</name>
<version>1.2.1</version>
<version>1.2.2</version>
<description>The Amazon Kinesis Video Streams Parser Library for Java enables Java developers to parse the streams
returned by GetMedia calls to Amazon Kinesis Video.
</description>
Expand All @@ -32,25 +32,25 @@
</license>
</licenses>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.databind.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-cbor</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.databind.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-cbor</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-bom</artifactId>
<version>1.11.487</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
Expand Down Expand Up @@ -81,12 +81,12 @@
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>amazon-kinesis-client</artifactId>
<version>1.9.3</version>
<version>1.14.7</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-lambda-java-core</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
Expand Down Expand Up @@ -116,7 +116,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -128,12 +128,12 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.6</version>
<version>3.12.0</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.33</version>
<version>1.7.35</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
Expand All @@ -143,8 +143,8 @@
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.33</version>
<artifactId>slf4j-reload4j</artifactId>
<version>1.7.35</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
Expand All @@ -161,7 +161,7 @@
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-mockito-release-full</artifactId>
<version>1.6.3</version>
<version>1.6.4</version>
<type>pom</type>
<scope>test</scope>
</dependency>
Expand Down Expand Up @@ -231,7 +231,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.1</version>
<version>3.3.1</version>
<configuration>
<source>8</source>
</configuration>
Expand All @@ -247,7 +247,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
Expand All @@ -257,11 +257,11 @@
</execution>
</executions>
</plugin>
<!-- AWS Lambda artificat builder plugin -->
<!-- AWS Lambda artifact builder plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.3</version>
<version>3.2.4</version>
<configuration>
<annotationProcessorPaths>
<path>
Expand Down

0 comments on commit 68f8058

Please sign in to comment.