|
14 | 14 | <artifactId>amazon-kinesis-video-streams-parser-library</artifactId> |
15 | 15 | <packaging>jar</packaging> |
16 | 16 | <name>Amazon Kinesis Video Streams Parser Library</name> |
17 | | - <version>1.2.1</version> |
| 17 | + <version>1.2.2</version> |
18 | 18 | <description>The Amazon Kinesis Video Streams Parser Library for Java enables Java developers to parse the streams |
19 | 19 | returned by GetMedia calls to Amazon Kinesis Video. |
20 | 20 | </description> |
|
32 | 32 | </license> |
33 | 33 | </licenses> |
34 | 34 | <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> |
47 | 47 | <groupId>com.amazonaws</groupId> |
48 | 48 | <artifactId>aws-java-sdk-bom</artifactId> |
49 | 49 | <version>1.11.487</version> |
50 | 50 | <type>pom</type> |
51 | 51 | <scope>import</scope> |
52 | | - </dependency> |
53 | | - </dependencies> |
| 52 | + </dependency> |
| 53 | + </dependencies> |
54 | 54 | </dependencyManagement> |
55 | 55 |
|
56 | 56 | <dependencies> |
|
81 | 81 | <dependency> |
82 | 82 | <groupId>com.amazonaws</groupId> |
83 | 83 | <artifactId>amazon-kinesis-client</artifactId> |
84 | | - <version>1.9.3</version> |
| 84 | + <version>1.14.7</version> |
85 | 85 | </dependency> |
86 | 86 | <dependency> |
87 | 87 | <groupId>com.amazonaws</groupId> |
88 | 88 | <artifactId>aws-lambda-java-core</artifactId> |
89 | | - <version>1.2.0</version> |
| 89 | + <version>1.2.1</version> |
90 | 90 | </dependency> |
91 | 91 | <dependency> |
92 | 92 | <groupId>com.amazonaws</groupId> |
|
116 | 116 | <dependency> |
117 | 117 | <groupId>junit</groupId> |
118 | 118 | <artifactId>junit</artifactId> |
119 | | - <version>4.13.1</version> |
| 119 | + <version>4.13.2</version> |
120 | 120 | <scope>test</scope> |
121 | 121 | </dependency> |
122 | 122 | <dependency> |
|
128 | 128 | <dependency> |
129 | 129 | <groupId>org.apache.commons</groupId> |
130 | 130 | <artifactId>commons-lang3</artifactId> |
131 | | - <version>3.6</version> |
| 131 | + <version>3.12.0</version> |
132 | 132 | </dependency> |
133 | 133 | <dependency> |
134 | 134 | <groupId>org.slf4j</groupId> |
135 | 135 | <artifactId>slf4j-api</artifactId> |
136 | | - <version>1.7.33</version> |
| 136 | + <version>1.7.35</version> |
137 | 137 | </dependency> |
138 | 138 | <dependency> |
139 | 139 | <groupId>org.apache.logging.log4j</groupId> |
|
143 | 143 | </dependency> |
144 | 144 | <dependency> |
145 | 145 | <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> |
148 | 148 | </dependency> |
149 | 149 | <dependency> |
150 | 150 | <groupId>org.apache.logging.log4j</groupId> |
|
161 | 161 | <dependency> |
162 | 162 | <groupId>org.powermock</groupId> |
163 | 163 | <artifactId>powermock-mockito-release-full</artifactId> |
164 | | - <version>1.6.3</version> |
| 164 | + <version>1.6.4</version> |
165 | 165 | <type>pom</type> |
166 | 166 | <scope>test</scope> |
167 | 167 | </dependency> |
|
231 | 231 | <plugin> |
232 | 232 | <groupId>org.apache.maven.plugins</groupId> |
233 | 233 | <artifactId>maven-javadoc-plugin</artifactId> |
234 | | - <version>3.1.1</version> |
| 234 | + <version>3.3.1</version> |
235 | 235 | <configuration> |
236 | 236 | <source>8</source> |
237 | 237 | </configuration> |
|
247 | 247 | <plugin> |
248 | 248 | <groupId>org.apache.maven.plugins</groupId> |
249 | 249 | <artifactId>maven-source-plugin</artifactId> |
250 | | - <version>3.0.1</version> |
| 250 | + <version>3.2.1</version> |
251 | 251 | <executions> |
252 | 252 | <execution> |
253 | 253 | <id>attach-sources</id> |
|
257 | 257 | </execution> |
258 | 258 | </executions> |
259 | 259 | </plugin> |
260 | | - <!-- AWS Lambda artificat builder plugin --> |
| 260 | + <!-- AWS Lambda artifact builder plugin --> |
261 | 261 | <plugin> |
262 | 262 | <groupId>org.apache.maven.plugins</groupId> |
263 | 263 | <artifactId>maven-shade-plugin</artifactId> |
264 | | - <version>2.3</version> |
| 264 | + <version>3.2.4</version> |
265 | 265 | <configuration> |
266 | 266 | <annotationProcessorPaths> |
267 | 267 | <path> |
|
0 commit comments