Skip to content

Commit f6c395d

Browse files
author
Dave Syer
committed
Add Maven incantation to make STS 3.7 happy
1 parent d0cf6b5 commit f6c395d

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

spring-boot-cli/pom.xml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -304,5 +304,40 @@
304304
</executions>
305305
</plugin>
306306
</plugins>
307+
<pluginManagement>
308+
<plugins>
309+
<plugin>
310+
<groupId>org.eclipse.m2e</groupId>
311+
<artifactId>lifecycle-mapping</artifactId>
312+
<version>1.0.0</version>
313+
<configuration>
314+
<lifecycleMappingMetadata>
315+
<pluginExecutions>
316+
<pluginExecution>
317+
<pluginExecutionFilter>
318+
<groupId>
319+
org.apache.maven.plugins
320+
</groupId>
321+
<artifactId>
322+
maven-dependency-plugin
323+
</artifactId>
324+
<versionRange>
325+
[1.0.0,)
326+
</versionRange>
327+
<goals>
328+
<goal>unpack</goal>
329+
<goal>copy-dependencies</goal>
330+
</goals>
331+
</pluginExecutionFilter>
332+
<action>
333+
<ignore></ignore>
334+
</action>
335+
</pluginExecution>
336+
</pluginExecutions>
337+
</lifecycleMappingMetadata>
338+
</configuration>
339+
</plugin>
340+
</plugins>
341+
</pluginManagement>
307342
</build>
308343
</project>

0 commit comments

Comments
 (0)