Author: ravi
Date: Sat Dec 31 12:32:53 2016
New Revision: 1776731
URL: http://svn.apache.org/viewvc?rev=1776731&view=rev
Log:
Moving patch jar creation into target. This causes mvn release:prepare to fail
the second time after a dryRun
Modified:
synapse/trunk/java/modules/patches/pom.xml
synapse/trunk/java/modules/patches/src/main/assembly/jars.xml
Modified: synapse/trunk/java/modules/patches/pom.xml
URL:
http://svn.apache.org/viewvc/synapse/trunk/java/modules/patches/pom.xml?rev=1776731&r1=1776730&r2=1776731&view=diff
==============================================================================
--- synapse/trunk/java/modules/patches/pom.xml (original)
+++ synapse/trunk/java/modules/patches/pom.xml Sat Dec 31 12:32:53 2016
@@ -52,7 +52,7 @@
<goal>jar</goal>
</goals>
<configuration>
- <outputDirectory>./jars</outputDirectory>
+ <outputDirectory>./target/jars</outputDirectory>
</configuration>
</execution>
</executions>
@@ -68,7 +68,7 @@
<configuration>
<target>
<unjar dest="${project.build.outputDirectory}">
- <fileset dir="${basedir}/jars">
+ <fileset dir="${basedir}/target/jars">
<include name="**/*.jar" />
</fileset>
</unjar>
Modified: synapse/trunk/java/modules/patches/src/main/assembly/jars.xml
URL:
http://svn.apache.org/viewvc/synapse/trunk/java/modules/patches/src/main/assembly/jars.xml?rev=1776731&r1=1776730&r2=1776731&view=diff
==============================================================================
--- synapse/trunk/java/modules/patches/src/main/assembly/jars.xml (original)
+++ synapse/trunk/java/modules/patches/src/main/assembly/jars.xml Sat Dec 31
12:32:53 2016
@@ -25,11 +25,11 @@
</formats>
<fileSets>
<fileSet>
- <directory>jars</directory>
+ <directory>target/jars</directory>
<outputDirectory>/</outputDirectory>
<includes>
<include>*.jar</include>
</includes>
</fileSet>
</fileSets>
-</assembly>
\ No newline at end of file
+</assembly>