|
10 | 10 | <artifactId>cast-api</artifactId> |
11 | 11 | <version>0.2.0-SNAPSHOT</version> |
12 | 12 | <packaging>jar</packaging> |
| 13 | + <prerequisites> |
| 14 | + <maven>3.2.5</maven> |
| 15 | + </prerequisites> |
13 | 16 |
|
14 | 17 | <name>DigitalMediaServer Cast API</name> |
15 | 18 | <description>Partial implementation of the Google Cast protocol</description> |
|
50 | 53 | <properties> |
51 | 54 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
52 | 55 | <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> |
54 | 57 | <slf4j.version>[1.7.2,1.7.100]</slf4j.version> |
55 | 58 | <pluginPluginVersion>3.5.2</pluginPluginVersion> |
56 | 59 | <javadocPluginVersion>3.0.1</javadocPluginVersion> |
|
61 | 64 | <dependency> |
62 | 65 | <groupId>org.jmdns</groupId> |
63 | 66 | <artifactId>jmdns</artifactId> |
64 | | - <version>3.5.7</version> |
| 67 | + <version>3.6.2</version> |
65 | 68 | </dependency> |
66 | 69 | <dependency> |
67 | 70 | <groupId>com.google.protobuf</groupId> |
68 | 71 | <artifactId>protobuf-java</artifactId> |
69 | | - <version>2.6.0</version> |
| 72 | + <version>3.21.7</version> |
70 | 73 | </dependency> |
71 | 74 | <dependency> |
72 | 75 | <groupId>com.fasterxml.jackson.core</groupId> |
73 | 76 | <artifactId>jackson-annotations</artifactId> |
74 | | - <version>${jackson.version}</version> |
| 77 | + <version>2.12.7</version> |
75 | 78 | </dependency> |
76 | 79 | <dependency> |
77 | 80 | <groupId>com.fasterxml.jackson.core</groupId> |
|
86 | 89 | <dependency> |
87 | 90 | <groupId>junit</groupId> |
88 | 91 | <artifactId>junit</artifactId> |
89 | | - <version>4.13.1</version> |
| 92 | + <version>4.13.2</version> |
90 | 93 | <scope>test</scope> |
91 | 94 | </dependency> |
92 | 95 | <dependency> |
|
98 | 101 | <dependency> |
99 | 102 | <groupId>ch.qos.logback</groupId> |
100 | 103 | <artifactId>logback-classic</artifactId> |
101 | | - <version>1.2.11</version> |
| 104 | + <version>1.2.13</version> |
102 | 105 | <scope>test</scope> |
103 | 106 | </dependency> |
104 | 107 | <dependency> |
105 | 108 | <groupId>ch.qos.logback</groupId> |
106 | 109 | <artifactId>logback-core</artifactId> |
107 | | - <version>1.2.11</version> |
| 110 | + <version>1.2.13</version> |
108 | 111 | <scope>test</scope> |
109 | 112 | </dependency> |
110 | 113 | </dependencies> |
|
159 | 162 | <plugin> |
160 | 163 | <groupId>org.apache.maven.plugins</groupId> |
161 | 164 | <artifactId>maven-gpg-plugin</artifactId> |
162 | | - <version>1.6</version> |
| 165 | + <version>3.0.1</version> |
163 | 166 | <executions> |
164 | 167 | <execution> |
165 | 168 | <id>sign-artifacts</id> |
|
193 | 196 | <pluginExecutionFilter> |
194 | 197 | <groupId>org.apache.felix</groupId> |
195 | 198 | <artifactId>maven-bundle-plugin</artifactId> |
196 | | - <versionRange>[3.0.1,)</versionRange> |
| 199 | + <versionRange>3.5.1</versionRange> |
197 | 200 | <goals> |
198 | 201 | <goal>manifest</goal> |
199 | 202 | </goals> |
|
212 | 215 | <plugin> |
213 | 216 | <groupId>org.apache.felix</groupId> |
214 | 217 | <artifactId>maven-bundle-plugin</artifactId> |
215 | | - <version>3.0.1</version> |
| 218 | + <version>3.5.1</version> |
216 | 219 | <executions> |
217 | 220 | <execution> |
218 | 221 | <id>bundle-manifest</id> |
|
226 | 229 | <plugin> |
227 | 230 | <groupId>org.apache.maven.plugins</groupId> |
228 | 231 | <artifactId>maven-compiler-plugin</artifactId> |
229 | | - <version>3.2</version> |
| 232 | + <version>3.8.1</version> |
230 | 233 | <configuration> |
231 | 234 | <source>1.7</source> |
232 | 235 | <target>1.7</target> |
233 | 236 | </configuration> |
234 | 237 | </plugin> |
235 | 238 | <plugin> |
236 | 239 | <artifactId>maven-jar-plugin</artifactId> |
237 | | - <version>2.6</version> |
| 240 | + <version>3.2.2</version> |
238 | 241 | <configuration> |
239 | 242 | <archive> |
240 | 243 | <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> |
|
244 | 247 | <plugin> |
245 | 248 | <groupId>org.apache.maven.plugins</groupId> |
246 | 249 | <artifactId>maven-release-plugin</artifactId> |
247 | | - <version>2.5.3</version> |
| 250 | + <version>3.0.1</version> |
248 | 251 | </plugin> |
249 | 252 | <plugin> |
250 | 253 | <groupId>org.sonatype.plugins</groupId> |
|
0 commit comments