Skip to content

Commit 63a923e

Browse files
committed
Move wget goal to process-resources phase
1 parent c5ed279 commit 63a923e

File tree

1 file changed

+36
-1
lines changed

1 file changed

+36
-1
lines changed

Diff for: pom.xml

+36-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
<executions>
105105
<execution>
106106
<id>install-youtube-dl</id>
107-
<phase>pre-integration-test</phase>
107+
<phase>process-resources</phase>
108108
<goals>
109109
<goal>wget</goal>
110110
</goals>
@@ -117,5 +117,40 @@
117117
</executions>
118118
</plugin>
119119
</plugins>
120+
<pluginManagement>
121+
<plugins>
122+
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
123+
<plugin>
124+
<groupId>org.eclipse.m2e</groupId>
125+
<artifactId>lifecycle-mapping</artifactId>
126+
<version>1.0.0</version>
127+
<configuration>
128+
<lifecycleMappingMetadata>
129+
<pluginExecutions>
130+
<pluginExecution>
131+
<pluginExecutionFilter>
132+
<groupId>
133+
com.googlecode.maven-download-plugin
134+
</groupId>
135+
<artifactId>
136+
download-maven-plugin
137+
</artifactId>
138+
<versionRange>
139+
[1.3.0,)
140+
</versionRange>
141+
<goals>
142+
<goal>wget</goal>
143+
</goals>
144+
</pluginExecutionFilter>
145+
<action>
146+
<ignore></ignore>
147+
</action>
148+
</pluginExecution>
149+
</pluginExecutions>
150+
</lifecycleMappingMetadata>
151+
</configuration>
152+
</plugin>
153+
</plugins>
154+
</pluginManagement>
120155
</build>
121156
</project>

0 commit comments

Comments
 (0)