Author: veithen
Date: Wed Dec 28 11:01:39 2016
New Revision: 1776264
URL: http://svn.apache.org/viewvc?rev=1776264&view=rev
Log:
Apply a workaround for MSHARED-319 to fix a build failure on Java 8.
Modified:
synapse/trunk/java/pom.xml
Modified: synapse/trunk/java/pom.xml
URL:
http://svn.apache.org/viewvc/synapse/trunk/java/pom.xml?rev=1776264&r1=1776263&r2=1776264&view=diff
==============================================================================
--- synapse/trunk/java/pom.xml (original)
+++ synapse/trunk/java/pom.xml Wed Dec 28 11:01:39 2016
@@ -279,6 +279,19 @@
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.2</version>
</plugin>
+ <plugin>
+ <artifactId>maven-remote-resources-plugin</artifactId>
+ <version>1.5</version>
+ <dependencies>
+ <dependency>
+ <!-- Workaround for MSHARED-319; remove when
upgrading to
+ plugin version > 1.5. -->
+ <groupId>org.apache.maven.shared</groupId>
+ <artifactId>maven-filtering</artifactId>
+ <version>1.3</version>
+ </dependency>
+ </dependencies>
+ </plugin>
</plugins>
</pluginManagement>
<plugins>