<constructor-arg ref="cache#url-failures-cache" type="org.codehaus.plexus.cache.Cache"/>
</bean>
+ <bean name="wagon#http" class="org.apache.maven.wagon.providers.http.LightweightHttpWagon" scope="prototype">
+ <property name="httpHeaders">
+ <map>
+ <entry key="User-Agent" value="${user.agent}" />
+ </map>
+ </property>
+ </bean>
+
+ <bean name="wagon#https" class="org.apache.maven.wagon.providers.http.LightweightHttpsWagon" scope="prototype">
+ <property name="httpHeaders">
+ <map>
+ <entry key="User-Agent" value="${user.agent}" />
+ </map>
+ </property>
+ </bean>
+
+ <bean id="propertyPlaceholder" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
+ <property name="location" value="classpath:application.properties" />
+ </bean>
</beans>