Skip to content

Commit f32f4ce

Browse files
committed
Updated dependencies to the latest versions that support Java 7
1 parent 3f1e087 commit f32f4ce

File tree

2 files changed

+5589
-4300
lines changed

2 files changed

+5589
-4300
lines changed

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>
@@ -190,7 +193,7 @@
190193
<pluginExecutionFilter>
191194
<groupId>org.apache.felix</groupId>
192195
<artifactId>maven-bundle-plugin</artifactId>
193-
<versionRange>[3.0.1,)</versionRange>
196+
<versionRange>3.5.1</versionRange>
194197
<goals>
195198
<goal>manifest</goal>
196199
</goals>
@@ -209,7 +212,7 @@
209212
<plugin>
210213
<groupId>org.apache.felix</groupId>
211214
<artifactId>maven-bundle-plugin</artifactId>
212-
<version>3.0.1</version>
215+
<version>3.5.1</version>
213216
<executions>
214217
<execution>
215218
<id>bundle-manifest</id>
@@ -223,15 +226,15 @@
223226
<plugin>
224227
<groupId>org.apache.maven.plugins</groupId>
225228
<artifactId>maven-compiler-plugin</artifactId>
226-
<version>3.2</version>
229+
<version>3.8.1</version>
227230
<configuration>
228231
<source>1.7</source>
229232
<target>1.7</target>
230233
</configuration>
231234
</plugin>
232235
<plugin>
233236
<artifactId>maven-jar-plugin</artifactId>
234-
<version>2.6</version>
237+
<version>3.2.2</version>
235238
<configuration>
236239
<archive>
237240
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
@@ -241,7 +244,7 @@
241244
<plugin>
242245
<groupId>org.apache.maven.plugins</groupId>
243246
<artifactId>maven-release-plugin</artifactId>
244-
<version>2.5.3</version>
247+
<version>3.0.1</version>
245248
</plugin>
246249
<plugin>
247250
<groupId>org.sonatype.plugins</groupId>

0 commit comments

Comments
 (0)