Skip to content

Commit 81e5dc0

Browse files
committed
Updated dependencies to the latest versions that support Java 7
1 parent 1021feb commit 81e5dc0

2 files changed

Lines changed: 5589 additions & 4300 deletions

File tree

pom.xml

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
<artifactId>cast-api</artifactId>
1111
<version>0.2.0-SNAPSHOT</version>
1212
<packaging>jar</packaging>
13+
<prerequisites>
14+
<maven>3.2.5</maven>
15+
</prerequisites>
1316

1417
<name>DigitalMediaServer Cast API</name>
1518
<description>Partial implementation of the Google Cast protocol</description>
@@ -50,7 +53,7 @@
5053
<properties>
5154
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5255
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
53-
<jackson.version>2.12.3</jackson.version>
56+
<jackson.version>2.12.7.2</jackson.version>
5457
<slf4j.version>[1.7.2,1.7.100]</slf4j.version>
5558
<pluginPluginVersion>3.5.2</pluginPluginVersion>
5659
<javadocPluginVersion>3.0.1</javadocPluginVersion>
@@ -61,17 +64,17 @@
6164
<dependency>
6265
<groupId>org.jmdns</groupId>
6366
<artifactId>jmdns</artifactId>
64-
<version>3.5.7</version>
67+
<version>3.6.2</version>
6568
</dependency>
6669
<dependency>
6770
<groupId>com.google.protobuf</groupId>
6871
<artifactId>protobuf-java</artifactId>
69-
<version>2.6.0</version>
72+
<version>3.21.7</version>
7073
</dependency>
7174
<dependency>
7275
<groupId>com.fasterxml.jackson.core</groupId>
7376
<artifactId>jackson-annotations</artifactId>
74-
<version>${jackson.version}</version>
77+
<version>2.12.7</version>
7578
</dependency>
7679
<dependency>
7780
<groupId>com.fasterxml.jackson.core</groupId>
@@ -86,7 +89,7 @@
8689
<dependency>
8790
<groupId>junit</groupId>
8891
<artifactId>junit</artifactId>
89-
<version>4.13.1</version>
92+
<version>4.13.2</version>
9093
<scope>test</scope>
9194
</dependency>
9295
<dependency>
@@ -98,13 +101,13 @@
98101
<dependency>
99102
<groupId>ch.qos.logback</groupId>
100103
<artifactId>logback-classic</artifactId>
101-
<version>1.2.11</version>
104+
<version>1.2.13</version>
102105
<scope>test</scope>
103106
</dependency>
104107
<dependency>
105108
<groupId>ch.qos.logback</groupId>
106109
<artifactId>logback-core</artifactId>
107-
<version>1.2.11</version>
110+
<version>1.2.13</version>
108111
<scope>test</scope>
109112
</dependency>
110113
</dependencies>
@@ -159,7 +162,7 @@
159162
<plugin>
160163
<groupId>org.apache.maven.plugins</groupId>
161164
<artifactId>maven-gpg-plugin</artifactId>
162-
<version>1.6</version>
165+
<version>3.0.1</version>
163166
<executions>
164167
<execution>
165168
<id>sign-artifacts</id>
@@ -193,7 +196,7 @@
193196
<pluginExecutionFilter>
194197
<groupId>org.apache.felix</groupId>
195198
<artifactId>maven-bundle-plugin</artifactId>
196-
<versionRange>[3.0.1,)</versionRange>
199+
<versionRange>3.5.1</versionRange>
197200
<goals>
198201
<goal>manifest</goal>
199202
</goals>
@@ -212,7 +215,7 @@
212215
<plugin>
213216
<groupId>org.apache.felix</groupId>
214217
<artifactId>maven-bundle-plugin</artifactId>
215-
<version>3.0.1</version>
218+
<version>3.5.1</version>
216219
<executions>
217220
<execution>
218221
<id>bundle-manifest</id>
@@ -226,15 +229,15 @@
226229
<plugin>
227230
<groupId>org.apache.maven.plugins</groupId>
228231
<artifactId>maven-compiler-plugin</artifactId>
229-
<version>3.2</version>
232+
<version>3.8.1</version>
230233
<configuration>
231234
<source>1.7</source>
232235
<target>1.7</target>
233236
</configuration>
234237
</plugin>
235238
<plugin>
236239
<artifactId>maven-jar-plugin</artifactId>
237-
<version>2.6</version>
240+
<version>3.2.2</version>
238241
<configuration>
239242
<archive>
240243
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
@@ -244,7 +247,7 @@
244247
<plugin>
245248
<groupId>org.apache.maven.plugins</groupId>
246249
<artifactId>maven-release-plugin</artifactId>
247-
<version>2.5.3</version>
250+
<version>3.0.1</version>
248251
</plugin>
249252
<plugin>
250253
<groupId>org.sonatype.plugins</groupId>

0 commit comments

Comments
 (0)