|
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> |
|
190 | 193 | <pluginExecutionFilter> |
191 | 194 | <groupId>org.apache.felix</groupId> |
192 | 195 | <artifactId>maven-bundle-plugin</artifactId> |
193 | | - <versionRange>[3.0.1,)</versionRange> |
| 196 | + <versionRange>3.5.1</versionRange> |
194 | 197 | <goals> |
195 | 198 | <goal>manifest</goal> |
196 | 199 | </goals> |
|
209 | 212 | <plugin> |
210 | 213 | <groupId>org.apache.felix</groupId> |
211 | 214 | <artifactId>maven-bundle-plugin</artifactId> |
212 | | - <version>3.0.1</version> |
| 215 | + <version>3.5.1</version> |
213 | 216 | <executions> |
214 | 217 | <execution> |
215 | 218 | <id>bundle-manifest</id> |
|
223 | 226 | <plugin> |
224 | 227 | <groupId>org.apache.maven.plugins</groupId> |
225 | 228 | <artifactId>maven-compiler-plugin</artifactId> |
226 | | - <version>3.2</version> |
| 229 | + <version>3.8.1</version> |
227 | 230 | <configuration> |
228 | 231 | <source>1.7</source> |
229 | 232 | <target>1.7</target> |
230 | 233 | </configuration> |
231 | 234 | </plugin> |
232 | 235 | <plugin> |
233 | 236 | <artifactId>maven-jar-plugin</artifactId> |
234 | | - <version>2.6</version> |
| 237 | + <version>3.2.2</version> |
235 | 238 | <configuration> |
236 | 239 | <archive> |
237 | 240 | <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> |
|
241 | 244 | <plugin> |
242 | 245 | <groupId>org.apache.maven.plugins</groupId> |
243 | 246 | <artifactId>maven-release-plugin</artifactId> |
244 | | - <version>2.5.3</version> |
| 247 | + <version>3.0.1</version> |
245 | 248 | </plugin> |
246 | 249 | <plugin> |
247 | 250 | <groupId>org.sonatype.plugins</groupId> |
|
0 commit comments