Skip to content

Commit 68f8058

Browse files
authored
Update parser library dependencies and parser library version (#150)
* 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
1 parent 1dd1f88 commit 68f8058

File tree

2 files changed

+40
-27
lines changed

2 files changed

+40
-27
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,19 @@ To run the sample follow the below steps:
129129

130130
## Release Notes
131131

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

133146
### Release 1.2.1 (Jan 2022)
134147
* Update slf4j-log4j12 and slf4j-api from 1.7.25 to 1.7.33

pom.xml

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<artifactId>amazon-kinesis-video-streams-parser-library</artifactId>
1515
<packaging>jar</packaging>
1616
<name>Amazon Kinesis Video Streams Parser Library</name>
17-
<version>1.2.1</version>
17+
<version>1.2.2</version>
1818
<description>The Amazon Kinesis Video Streams Parser Library for Java enables Java developers to parse the streams
1919
returned by GetMedia calls to Amazon Kinesis Video.
2020
</description>
@@ -32,25 +32,25 @@
3232
</license>
3333
</licenses>
3434
<dependencyManagement>
35-
<dependencies>
36-
<dependency>
37-
<groupId>com.fasterxml.jackson.core</groupId>
38-
<artifactId>jackson-databind</artifactId>
39-
<version>${jackson.databind.version}</version>
40-
</dependency>
41-
<dependency>
42-
<groupId>com.fasterxml.jackson.dataformat</groupId>
43-
<artifactId>jackson-dataformat-cbor</artifactId>
44-
<version>${jackson.version}</version>
45-
</dependency>
46-
<dependency>
35+
<dependencies>
36+
<dependency>
37+
<groupId>com.fasterxml.jackson.core</groupId>
38+
<artifactId>jackson-databind</artifactId>
39+
<version>${jackson.databind.version}</version>
40+
</dependency>
41+
<dependency>
42+
<groupId>com.fasterxml.jackson.dataformat</groupId>
43+
<artifactId>jackson-dataformat-cbor</artifactId>
44+
<version>${jackson.version}</version>
45+
</dependency>
46+
<dependency>
4747
<groupId>com.amazonaws</groupId>
4848
<artifactId>aws-java-sdk-bom</artifactId>
4949
<version>1.11.487</version>
5050
<type>pom</type>
5151
<scope>import</scope>
52-
</dependency>
53-
</dependencies>
52+
</dependency>
53+
</dependencies>
5454
</dependencyManagement>
5555

5656
<dependencies>
@@ -81,12 +81,12 @@
8181
<dependency>
8282
<groupId>com.amazonaws</groupId>
8383
<artifactId>amazon-kinesis-client</artifactId>
84-
<version>1.9.3</version>
84+
<version>1.14.7</version>
8585
</dependency>
8686
<dependency>
8787
<groupId>com.amazonaws</groupId>
8888
<artifactId>aws-lambda-java-core</artifactId>
89-
<version>1.2.0</version>
89+
<version>1.2.1</version>
9090
</dependency>
9191
<dependency>
9292
<groupId>com.amazonaws</groupId>
@@ -116,7 +116,7 @@
116116
<dependency>
117117
<groupId>junit</groupId>
118118
<artifactId>junit</artifactId>
119-
<version>4.13.1</version>
119+
<version>4.13.2</version>
120120
<scope>test</scope>
121121
</dependency>
122122
<dependency>
@@ -128,12 +128,12 @@
128128
<dependency>
129129
<groupId>org.apache.commons</groupId>
130130
<artifactId>commons-lang3</artifactId>
131-
<version>3.6</version>
131+
<version>3.12.0</version>
132132
</dependency>
133133
<dependency>
134134
<groupId>org.slf4j</groupId>
135135
<artifactId>slf4j-api</artifactId>
136-
<version>1.7.33</version>
136+
<version>1.7.35</version>
137137
</dependency>
138138
<dependency>
139139
<groupId>org.apache.logging.log4j</groupId>
@@ -143,8 +143,8 @@
143143
</dependency>
144144
<dependency>
145145
<groupId>org.slf4j</groupId>
146-
<artifactId>slf4j-log4j12</artifactId>
147-
<version>1.7.33</version>
146+
<artifactId>slf4j-reload4j</artifactId>
147+
<version>1.7.35</version>
148148
</dependency>
149149
<dependency>
150150
<groupId>org.apache.logging.log4j</groupId>
@@ -161,7 +161,7 @@
161161
<dependency>
162162
<groupId>org.powermock</groupId>
163163
<artifactId>powermock-mockito-release-full</artifactId>
164-
<version>1.6.3</version>
164+
<version>1.6.4</version>
165165
<type>pom</type>
166166
<scope>test</scope>
167167
</dependency>
@@ -231,7 +231,7 @@
231231
<plugin>
232232
<groupId>org.apache.maven.plugins</groupId>
233233
<artifactId>maven-javadoc-plugin</artifactId>
234-
<version>3.1.1</version>
234+
<version>3.3.1</version>
235235
<configuration>
236236
<source>8</source>
237237
</configuration>
@@ -247,7 +247,7 @@
247247
<plugin>
248248
<groupId>org.apache.maven.plugins</groupId>
249249
<artifactId>maven-source-plugin</artifactId>
250-
<version>3.0.1</version>
250+
<version>3.2.1</version>
251251
<executions>
252252
<execution>
253253
<id>attach-sources</id>
@@ -257,11 +257,11 @@
257257
</execution>
258258
</executions>
259259
</plugin>
260-
<!-- AWS Lambda artificat builder plugin -->
260+
<!-- AWS Lambda artifact builder plugin -->
261261
<plugin>
262262
<groupId>org.apache.maven.plugins</groupId>
263263
<artifactId>maven-shade-plugin</artifactId>
264-
<version>2.3</version>
264+
<version>3.2.4</version>
265265
<configuration>
266266
<annotationProcessorPaths>
267267
<path>

0 commit comments

Comments
 (0)